From: Vincent Pit Date: Wed, 5 Jan 2011 18:40:45 +0000 (+0100) Subject: This is 0.09 X-Git-Tag: v0.09 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fautovivification.git;a=commitdiff_plain;h=refs%2Ftags%2Fv0.09 This is 0.09 --- diff --git a/Changes b/Changes index a412976..97a9c82 100644 --- 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. diff --git a/META.yml b/META.yml index 9b9a50e..eb399a9 100644 --- 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 diff --git a/README b/README index dc3696a..b59fd7a 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME autovivification - Lexically disable autovivification. VERSION - Version 0.08 + Version 0.09 SYNOPSIS no autovivification; diff --git a/lib/autovivification.pm b/lib/autovivification.pm index 2a30853..2890cac 100644 --- a/lib/autovivification.pm +++ b/lib/autovivification.pm @@ -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