]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commitdiff
This is 0.10 v0.10
authorVincent Pit <vince@profvince.com>
Mon, 18 Jan 2010 23:47:29 +0000 (00:47 +0100)
committerVincent Pit <vince@profvince.com>
Mon, 18 Jan 2010 23:47:29 +0000 (00:47 +0100)
Changes
META.yml
README
lib/Scope/Upper.pm

diff --git a/Changes b/Changes
index 9fdd3b8348f195e20afcd534b7cd886f7782308d..c31b88c3e61adcc2349974a803e3815c53057cce 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Scope-Upper
 
+0.10    2010-01-18 23:50 UTC
+        + Fix : Properly handle given/when on 5.10.
+        + Fix : Some stack inconsistencies were fixed, though they were unlikely
+                to have an impact on your real-life code.
+        + Fix : Work around Kwalitee test misfailures.
+
 0.09    2009-05-17 20:20 UTC
         + Add : The new SU_THREADSAFE constant can be used to know whether the
                 module could have been built with thread safety enabled.
index 6f5635b22b70f7f9f72489cd246b8cc6a9e4172c..36a52f84e5dcff14e6d2408228d04556da65d0ff 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Scope-Upper
-version:            0.09
+version:            0.10
 abstract:           Act on upper scopes.
 author:
     - Vincent Pit <perl@profvince.com>
@@ -9,9 +9,13 @@ distribution_type:  module
 configure_requires:
     ExtUtils::MakeMaker:  0
 build_requires:
+    base:                 0
+    Exporter:             0
     ExtUtils::MakeMaker:  0
     Test::More:           0
+    XSLoader:             0
 requires:
+    base:      0
     Exporter:  0
     perl:      5.006
     XSLoader:  0
@@ -24,7 +28,8 @@ no_index:
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.50
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
+dynamic_config:     1
diff --git a/README b/README
index 860d3e1b54cf13acd18920fe3d4b99f31c50129d..074581cbe7cf8130d2d391cbbc85974e775d7b8f 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Scope::Upper - Act on upper scopes.
 
 VERSION
-    Version 0.09
+    Version 0.10
 
 SYNOPSIS
         package X;
@@ -170,7 +170,7 @@ FUNCTIONS
          # not reached
         }->();
 
-    will righteously set $num to 26.
+    will rightfully set $num to 26.
 
 CONSTANTS
   "SU_THREADSAFE"
@@ -322,6 +322,11 @@ DEPENDENCIES
 SEE ALSO
     Alias, Hook::Scope, Scope::Guard, Guard.
 
+    Continuation::Escape is a thin wrapper around Scope::Upper that gives
+    you a continuation passing style interface to "unwind". It's easier to
+    use, but it requires you to have control over the scope where you want
+    to return.
+
 AUTHOR
     Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
 
@@ -348,7 +353,7 @@ ACKNOWLEDGEMENTS
     Thanks to Shawn M. Moore for motivation.
 
 COPYRIGHT & LICENSE
-    Copyright 2008-2009 Vincent Pit, all rights reserved.
+    Copyright 2008,2009,2010 Vincent Pit, all rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.
index 6d1616be401cea136cc5b304f202cf4d566aa5bd..30f94547df8d937db1481de5b8bfdfa76e1ea1c0 100644 (file)
@@ -9,13 +9,13 @@ Scope::Upper - Act on upper scopes.
 
 =head1 VERSION
 
-Version 0.09
+Version 0.10
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.09';
+ $VERSION = '0.10';
 }
 
 =head1 SYNOPSIS