]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.09_01 v0.09_01
authorVincent Pit <vince@profvince.com>
Mon, 8 Dec 2008 17:54:06 +0000 (18:54 +0100)
committerVincent Pit <vince@profvince.com>
Mon, 8 Dec 2008 17:54:06 +0000 (18:54 +0100)
Changes
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index 48c2d0dab78d15fbb8cee16147a76e51a9ef206c..affc106e0af22dc4f53bd16cc6e6e2f593121683 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for indirect
 
+0.09_01 2008-12-08 17:55 UTC
+        + Fix : Invalid memory read with "${\(new Foo)}" constructs. The
+                corresponding test is turned back on.
+        + Tst : Refinements in t/30-scope.t
+
 0.09    2008-12-05 20:35 UTC
         + Add : Support for perl 5.8.
         + Tst : Skip a test in t/10-good.t that randomly segfaults for (I guess)
index e41cbb0e62d466aedb218125deb38fb4da4405bf..fdeaee4e38608f347ff4549290079efe65e7204a 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               indirect
-version:            0.09
+version:            0.09_01
 abstract:           Lexically warn about using the indirect object syntax.
 author:
     - Vincent Pit <perl@profvince.com>
diff --git a/README b/README
index c1fc439ce3efdb819361c580987ed789b15e06e3..50f7a527557bb2bbe22eed79e73e704a393fff4e 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect object syntax.
 
 VERSION
-    Version 0.09
+    Version 0.09_01
 
 SYNOPSIS
         no indirect;
@@ -49,8 +49,8 @@ CAVEATS
     token before the end (as in "meth $obj;" or "meth $obj 1").
 
     With 5.8 perls, the pragma does not propagate into "eval STRING". This
-    is due to a shortcoming in the way perl handles the hints hash, and is
-    fixed in perl 5.10.
+    is due to a shortcoming in the way perl handles the hints hash, which is
+    addressed in perl 5.10.
 
 AUTHOR
     Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
index 4c32f8fa577685acb357ff8e2cfd65a10c327bdb..ff473d46984f23da4f7ae6a6bdc6323c93ff2ee5 100644 (file)
@@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect object syntax.
 
 =head1 VERSION
 
-Version 0.09
+Version 0.09_01
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.09';
+ $VERSION = '0.09_01';
 }
 
 =head1 SYNOPSIS