]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
This is 0.14 v0.14
authorVincent Pit <vince@profvince.com>
Sat, 1 Nov 2014 22:25:34 +0000 (20:25 -0200)
committerVincent Pit <vince@profvince.com>
Sat, 1 Nov 2014 22:25:34 +0000 (20:25 -0200)
Changes
META.json
META.yml
README
lib/autovivification.pm

diff --git a/Changes b/Changes
index 7489b0faf7c15ab7c0466434f186cf3920a343b2..d84c19235a0615d89db772e6ce263ff3706371b8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,16 @@
 Revision history for autovivification
 
+0.14    2014-11-01 22:25 UTC
+        + Fix : [RT #99458] : AnyEvent::Loop hangs if autovivification 0.13 is
+                loaded
+                [RT #99904] : 'no autovivification' breaks Lingua::EN::Inflect
+                from a distance
+                This was a regression in 0.13 which caused the peephole
+                optimizer to loop infinitely on "... while 1" constructs.
+                However, the Lingua::EN::Inflect problem only occured in perl
+                5.20 and above.
+                Thanks Toshio Ito and Kent Fredric for reporting.
+
 0.13    2014-10-04 16:55 UTC
         This release contains a change that, while being very likely to be safe,
         can potentially cause freezes during code compilation. Every release
index 81287027c4984dfafa4a95fadbb0a7324e5b681d..e91f5b9f37aeb412f0251d6e81f316a8974906a8 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
       "Vincent Pit <perl@profvince.com>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690",
+   "generated_by" : "ExtUtils::MakeMaker version 7, CPAN::Meta::Converter version 2.142690",
    "license" : [
       "perl_5"
    ],
@@ -54,5 +54,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Fautovivification.git"
       }
    },
-   "version" : "0.13"
+   "version" : "0.14"
 }
index c1e47dd05dbcb522186dacd51c96775a10f1bd99..812f3b34d36eeb765a7ca0219f0f1e70e19c4d54 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -11,7 +11,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690'
+generated_by: 'ExtUtils::MakeMaker version 7, CPAN::Meta::Converter version 2.142690'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -29,4 +29,4 @@ resources:
   homepage: http://search.cpan.org/dist/autovivification/
   license: http://dev.perl.org/licenses/
   repository: http://git.profvince.com/?p=perl%2Fmodules%2Fautovivification.git
-version: '0.13'
+version: '0.14'
diff --git a/README b/README
index 3f0220129e158e662e412db8fcc91a234bf6bebc..9bdf69f1abfe74760a30f038e2778503c9776679 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     autovivification - Lexically disable autovivification.
 
 VERSION
-    Version 0.13
+    Version 0.14
 
 SYNOPSIS
         no autovivification;
index 4c32719d741a8bf15bfd35c402a6f65fa6b9a2fc..7738a5864c712a9cd6c20927cd65aae9b8612201 100644 (file)
@@ -11,13 +11,13 @@ autovivification - Lexically disable autovivification.
 
 =head1 VERSION
 
-Version 0.13
+Version 0.14
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.13';
+ $VERSION = '0.14';
 }
 
 =head1 SYNOPSIS