]> git.vpit.fr Git - perl/modules/Variable-Temp.git/commitdiff
This is 0.03 v0.03
authorVincent Pit <vince@profvince.com>
Mon, 6 Apr 2015 12:55:30 +0000 (09:55 -0300)
committerVincent Pit <vince@profvince.com>
Mon, 6 Apr 2015 12:55:30 +0000 (09:55 -0300)
Changes
META.json
META.yml
README
lib/Variable/Temp.pm

diff --git a/Changes b/Changes
index c11a2e5810f32043276720d613c8a24d9a157c19..e324437f5563ca84d80bbf6fc738eb889ec8ff7e 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,13 @@
 Revision history for Variable-Temp
 
+0.03    2015-04-06 12:55 UTC
+        + Tst : t/13-magic.t will no longer fail with a 'planned twice' error
+                when Variable::Magic's version is not recent enough.
+        + Tst : Tests from t/10-base.t and t/20-lvalue.t that localize array
+                elements at the end of the array will now be skipped before
+                perl 5.12, as a bug in perl prevents the array length from
+                being reset at scope end.
+
 0.02    2015-04-01 22:55 UTC
         + Add : temp() can now be applied to arrays and hashes.
         + Add : The new set_temp() function is a non-lvalue alternative to
index ca6a384826d088c9dd5da48c0c007e7ef5931573..b60170b4576777a07ea54225bba26de87b44792a 100644 (file)
--- a/META.json
+++ b/META.json
@@ -60,5 +60,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Temp.git"
       }
    },
-   "version" : "0.02"
+   "version" : "0.03"
 }
index 086f85330477e259a523802e2ae03fa163d4daa7..2a0286cb38ec7e02b9bec8d2db8016a6d4dec5e2 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -35,4 +35,4 @@ resources:
   homepage: http://search.cpan.org/dist/Variable-Temp/
   license: http://dev.perl.org/licenses/
   repository: http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Temp.git
-version: '0.02'
+version: '0.03'
diff --git a/README b/README
index df6d397b38485d7c224267056910d809cdce36a3..18738e8046439f8f0640e4aced8911d34f334c39 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Temp - Temporarily change the value of a variable.
 
 VERSION
-    Version 0.02
+    Version 0.03
 
 SYNOPSIS
         use Variable::Temp 'temp';
index 747771194bce80a65199f58a24c30df202966fc2..2caba110902c7ad4241ce2efee75c432d9020b18 100644 (file)
@@ -11,13 +11,13 @@ Variable::Temp - Temporarily change the value of a variable.
 
 =head1 VERSION
 
-Version 0.02
+Version 0.03
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.02';
+ $VERSION = '0.03';
 }
 
 =head1 SYNOPSIS