]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.09 v0.09
authorVincent Pit <vince@profvince.com>
Fri, 5 Dec 2008 20:35:31 +0000 (21:35 +0100)
committerVincent Pit <vince@profvince.com>
Fri, 5 Dec 2008 20:35:31 +0000 (21:35 +0100)
Changes
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index 94b0920acb8c66b9b075b7e08165b02b2b1fba4a..48c2d0dab78d15fbb8cee16147a76e51a9ef206c 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for indirect
 
+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)
+                systems stricter than linux in the way they manage their memory.
+
 0.08    2008-10-22 14:45 UTC
         + Fix : A rare edge case for package whose names are prefix of 'main'.
         + Tst : Test $$ as variable and state variables.
index cae9804493b72d0c516632cb2d446b7689052bf4..e41cbb0e62d466aedb218125deb38fb4da4405bf 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               indirect
-version:            0.08
+version:            0.09
 abstract:           Lexically warn about using the indirect object syntax.
 author:
     - Vincent Pit <perl@profvince.com>
@@ -14,7 +14,7 @@ no_index:
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.46
+generated_by:       ExtUtils::MakeMaker version 6.48
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
diff --git a/README b/README
index d880a9cc19d6c4db11ae6e2a9840f443518b57ab..c1fc439ce3efdb819361c580987ed789b15e06e3 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect object syntax.
 
 VERSION
-    Version 0.08
+    Version 0.09
 
 SYNOPSIS
         no indirect;
@@ -39,7 +39,7 @@ METHODS
     Magically called at each "use indirect". Turns the module off.
 
 DEPENDENCIES
-    perl 5.9.4.
+    perl 5.8.
 
     XSLoader (standard since perl 5.006).
 
@@ -48,6 +48,10 @@ CAVEATS
     indirect object syntax, although it will as soon as there is another
     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.
+
 AUTHOR
     Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
 
index 23bc7a27ff2bf04cbfc040fee53e847da073d30b..092b7e54f91a3716261eec6b22290b690171093c 100644 (file)
@@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect object syntax.
 
 =head1 VERSION
 
-Version 0.08
+Version 0.09
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.08';
+ $VERSION = '0.09';
 }
 
 =head1 SYNOPSIS