]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commitdiff
This is 0.12 v0.12
authorVincent Pit <vince@profvince.com>
Wed, 19 May 2010 00:42:30 +0000 (02:42 +0200)
committerVincent Pit <vince@profvince.com>
Wed, 19 May 2010 00:42:30 +0000 (02:42 +0200)
Changes
META.yml
README
lib/Scope/Upper.pm

diff --git a/Changes b/Changes
index 6ba7ec3bac36bf55f2b87428d9a2e2f298790b08..1583649f0c86d7e7ecda433422e4734eaf20491b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Scope-Upper
 
+0.12    2010-05-19 00:45 UTC
+        + Fix : Compatibility with perl 5.13.
+        + Fix : Test failures with perl 5.8.0.
+        + Fix : A minor leak of SVs when a non array/hash was passed to
+                localize_elem().
+
 0.11    2010-04-16 23:20 UTC
         + Chg : It's now forbiddent to pass a reference to a non-glob variable
                 as the localization target of localize(), localize_elem() and
index b5959cbfb3e427285a0f4a94ced461013921627b..56878c49eafa3b371258090a0269d05b1202b9f9 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,12 +1,13 @@
 --- #YAML:1.0
 name:               Scope-Upper
-version:            0.11
+version:            0.12
 abstract:           Act on upper scopes.
 author:
     - Vincent Pit <perl@profvince.com>
 license:            perl
 distribution_type:  module
 configure_requires:
+    Config:               0
     ExtUtils::MakeMaker:  0
 build_requires:
     base:                 0
diff --git a/README b/README
index 40d7734d222ec14c002f1266db88df263979809b..527b31b15d7386a6de85a95a87825fccb16ccdf8 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Scope::Upper - Act on upper scopes.
 
 VERSION
-    Version 0.11
+    Version 0.12
 
 SYNOPSIS
     "reap", "localize", "localize_elem", "localize_delete" and "WORDS" :
index ddbdc81a9bc7376e6e3ab6eea920c7fe61fbce57..f6849e5be6f64f2dff247e0ffe6fd82483cc7924 100644 (file)
@@ -9,13 +9,13 @@ Scope::Upper - Act on upper scopes.
 
 =head1 VERSION
 
-Version 0.11
+Version 0.12
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.11';
+ $VERSION = '0.12';
 }
 
 =head1 SYNOPSIS