]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
This is 0.05 v0.05
authorVincent Pit <vince@profvince.com>
Fri, 5 Mar 2010 23:09:29 +0000 (00:09 +0100)
committerVincent Pit <vince@profvince.com>
Fri, 5 Mar 2010 23:09:29 +0000 (00:09 +0100)
Changes
META.yml
README
lib/autovivification.pm

diff --git a/Changes b/Changes
index 64273204d85c38abc913ad9494234549eaf1576a..beaaa71a3703e5256007d2ac3846d474fa560e9b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,13 @@
 Revision history for autovivification
 
+0.05    2010-03-05 23:15 UTC
+        + Fix : [RT #55154] : Crashes and assertion failures when deparsing and
+                re-eval-uating some code compiled while autovivification was in
+                use.
+                Thanks Michael G. Schwern for reporting.
+        + Fix : [RT #53647] : "leys" typo in pod.
+                Thanks Hinrik Orn Sigurdsson for reporting.
+
 0.04    2010-01-10 00:30 UTC
         + Add : Array and hash slices are now handled by the pragma.
         + Fix : Work around Kwalitee test misfailures.
index e1d00d5459e0c2817e9bade5d85ac2f95d1f6e28..ca829fe6ce1ab49998c2c70657c0d187c42771c3 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               autovivification
-version:            0.04
+version:            0.05
 abstract:           Lexically disable autovivification.
 author:
     - Vincent Pit <perl@profvince.com>
@@ -28,4 +28,4 @@ generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
-dynamic_config:     1
+dynamic_config:     0
diff --git a/README b/README
index 4f119c5c5a9ababb4b902bbc486717bce88ba542..a90d17bb487d2dd27003ef652960605942ba4d82 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     autovivification - Lexically disable autovivification.
 
 VERSION
-    Version 0.04
+    Version 0.05
 
 SYNOPSIS
         no autovivification;
@@ -42,7 +42,7 @@ METHODS
         Turn off autovivification for rvalue dereferencing expressions, such
         as "$value = $hashref->{key}[$idx]{$field}", "keys
         %{$hashref->{key}}" or "values %{$hashref->{key}}". Starting from
-        perl 5.11, it also covers "leys" and "values" on array references.
+        perl 5.11, it also covers "keys" and "values" on array references.
         When the expression would have autovivified, "undef" is returned for
         a plain fetch, while "keys" and "values" return 0 in scalar context
         and the empty list in list context.
index a266d794833289bd3ccbd6b4af9f7a713b22d68d..8d56b08e1bd03c7e030f2816fe5cb90185232dab 100644 (file)
@@ -11,13 +11,13 @@ autovivification - Lexically disable autovivification.
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.04';
+ $VERSION = '0.05';
 }
 
 =head1 SYNOPSIS