]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.21 v0.21
authorVincent Pit <vince@profvince.com>
Mon, 31 May 2010 23:08:22 +0000 (01:08 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 31 May 2010 23:08:22 +0000 (01:08 +0200)
Changes
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index 9ddf550ef894000a747543b82904863dbac64320..83b6f920b1556bdf4e36afd85e96d34876ded453 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,13 @@
 Revision history for indirect
 
+0.21    2010-05-31 23:10 UTC
+        + Chg : perl 5.8.1 is now required (instead of 5.8.0).
+        + Fix : [RT #57699] : indirect fail with 64-bit int on 5.13.1.
+                It was actually a problem with thread destructors segfaulting
+                because they weren't called at the right time anymore.
+                Thanks Andrew Main for reporting.
+        + Tst : A few more regression tests about the scope leak bug.
+
 0.20    2010-04-18 21:25 UTC
         + Fix : [RT #50570] : "indirect" leaking into LWP.
                 Thanks Andrew Main for reporting.
index dae5a3effadc0eb513a0811811bed88a80303830..c92902a7b70e1ecb39c59539ad23faa5540f1e2d 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               indirect
-version:            0.20
+version:            0.21
 abstract:           Lexically warn about using the indirect object syntax.
 author:
     - Vincent Pit <perl@profvince.com>
@@ -13,7 +13,7 @@ build_requires:
     Test::More:           0
     XSLoader:             0
 requires:
-    perl:      5.008
+    perl:      5.008001
     XSLoader:  0
 resources:
     bugtracker:  http://rt.cpan.org/NoAuth/ReportBug.html?Queue=indirect
diff --git a/README b/README
index a3e297a86aef970f592a85e0fbddc2ccc28a26d4..a563ea0adc3a9a95c73022856fa910878e409c71 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect object syntax.
 
 VERSION
-    Version 0.20
+    Version 0.21
 
 SYNOPSIS
         # In a script
@@ -120,7 +120,7 @@ CAVEATS
     Hence "my $x = new Class if 0" will be caught.
 
 DEPENDENCIES
-    perl 5.8.
+    perl 5.8.1.
 
     XSLoader (standard since perl 5.006).
 
index b49c702c7243608f3f0b719ea3743828c36dd5a1..239773f9a6d7b65c66394f290151786db027ef06 100644 (file)
@@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect object syntax.
 
 =head1 VERSION
 
-Version 0.20
+Version 0.21
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.20';
+ $VERSION = '0.21';
 }
 
 =head1 SYNOPSIS