From: Vincent Pit Date: Sat, 1 Nov 2014 22:25:34 +0000 (-0200) Subject: This is 0.14 X-Git-Tag: v0.14^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fautovivification.git;a=commitdiff_plain;h=1d452c50d9e19dc4e8ff7a29bc478376a85f600a This is 0.14 --- diff --git a/Changes b/Changes index 7489b0f..d84c192 100644 --- 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 diff --git a/META.json b/META.json index 8128702..e91f5b9 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "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" } diff --git a/META.yml b/META.yml index c1e47dd..812f3b3 100644 --- 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 3f02201..9bdf69f 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME autovivification - Lexically disable autovivification. VERSION - Version 0.13 + Version 0.14 SYNOPSIS no autovivification; diff --git a/lib/autovivification.pm b/lib/autovivification.pm index 4c32719..7738a58 100644 --- a/lib/autovivification.pm +++ b/lib/autovivification.pm @@ -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