From: Vincent Pit Date: Mon, 8 Dec 2008 17:54:06 +0000 (+0100) Subject: This is 0.09_01 X-Git-Tag: v0.09_01^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=d4d9cefeb432c16bc7994c784bed08b6b17f2b25 This is 0.09_01 --- diff --git a/Changes b/Changes index 48c2d0d..affc106 100644 --- 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) diff --git a/META.yml b/META.yml index e41cbb0..fdeaee4 100644 --- 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 diff --git a/README b/README index c1fc439..50f7a52 100644 --- 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, "", . diff --git a/lib/indirect.pm b/lib/indirect.pm index 4c32f8f..ff473d4 100644 --- a/lib/indirect.pm +++ b/lib/indirect.pm @@ -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