]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
This is 0.09 v0.09
authorVincent Pit <vince@profvince.com>
Wed, 5 Jan 2011 18:40:45 +0000 (19:40 +0100)
committerVincent Pit <vince@profvince.com>
Wed, 5 Jan 2011 18:40:45 +0000 (19:40 +0100)
Changes
META.yml
README
lib/autovivification.pm

diff --git a/Changes b/Changes
index a4129764f6f20cfc5a0b7cddc8e2eb54d2094715..97a9c82e8da5e6358f9fa9558f1738412014f33e 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,12 @@
 Revision history for autovivification
 
+0.09    2011-01-05 18:40 UTC
+        + Fix : [RT #64435] : Hangs with File::Copy in Config.pm.
+                This was actually a regression introduced together with the new
+                peephole optimizer strategy, and that caused the pragma to hang
+                on constructs like "for (;;) { ... }".
+                Thanks Michael Schilli for reporting.
+
 0.08    2011-01-03 21:00 UTC
         + Fix : Building on Windows.
 
index 9b9a50e9fcc76bd0a35bc9afbaff0812c3f11584..eb399a9d6aa22a6ad55a89f042b32a89fba9fa8a 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               autovivification
-version:            0.08
+version:            0.09
 abstract:           Lexically disable autovivification.
 author:
     - Vincent Pit <perl@profvince.com>
diff --git a/README b/README
index dc3696a8ddb9f0096c21fe70d30abf92d3802a2f..b59fd7abb8b03c32114c002ae27fdc51f4614d10 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     autovivification - Lexically disable autovivification.
 
 VERSION
-    Version 0.08
+    Version 0.09
 
 SYNOPSIS
         no autovivification;
index 2a30853f23445d243a48606457d961f6678d785c..2890cace2f79a6b81c1f20d82d98bcf69b783f8c 100644 (file)
@@ -11,13 +11,13 @@ autovivification - Lexically disable autovivification.
 
 =head1 VERSION
 
-Version 0.08
+Version 0.09
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.08';
+ $VERSION = '0.09';
 }
 
 =head1 SYNOPSIS