From: Vincent Pit Date: Wed, 24 Aug 2011 14:58:40 +0000 (+0200) Subject: This is 0.10 X-Git-Tag: v0.10^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fautovivification.git;a=commitdiff_plain;h=6f680a08a1a913cc9131eabb49191d5a0dc486de This is 0.10 --- diff --git a/Changes b/Changes index 97a9c82..12521b8 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for autovivification +0.10 2011-08-24 15:00 UTC + + Fix : The pragma no longer vivifies the "autovivification" entry + in the hints hash %^H on perl 5.8. + 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 diff --git a/META.json b/META.json index 986a31f..dbbebb5 100644 --- a/META.json +++ b/META.json @@ -52,5 +52,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Fautovivification.git" } }, - "version" : "0.09" + "version" : "0.10" } diff --git a/META.yml b/META.yml index eb399a9..7486735 100644 --- a/META.yml +++ b/META.yml @@ -1,31 +1,30 @@ ---- #YAML:1.0 -name: autovivification -version: 0.09 -abstract: Lexically disable autovivification. +--- +abstract: 'Lexically disable autovivification.' author: - - Vincent Pit -license: perl -distribution_type: module -configure_requires: - ExtUtils::MakeMaker: 0 + - 'Vincent Pit ' build_requires: - ExtUtils::MakeMaker: 0 - Test::More: 0 - XSLoader: 0 + ExtUtils::MakeMaker: 0 + Test::More: 0 + XSLoader: 0 +configure_requires: + ExtUtils::MakeMaker: 0 +dynamic_config: 1 +generated_by: 'ExtUtils::MakeMaker version 6.59, CPAN::Meta::Converter version 2.112150' +license: perl +meta-spec: + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: 1.4 +name: autovivification +no_index: + directory: + - t + - inc requires: - perl: 5.008003 - XSLoader: 0 + XSLoader: 0 + perl: 5.008003 resources: - bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=autovivification - homepage: http://search.cpan.org/dist/autovivification/ - license: http://dev.perl.org/licenses/ - repository: http://git.profvince.com/?p=perl%2Fmodules%2Fautovivification.git -no_index: - directory: - - t - - inc -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 + bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=autovivification + 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.10 diff --git a/README b/README index b59fd7a..0cb0b9e 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME autovivification - Lexically disable autovivification. VERSION - Version 0.09 + Version 0.10 SYNOPSIS no autovivification; diff --git a/lib/autovivification.pm b/lib/autovivification.pm index 2890cac..688907a 100644 --- a/lib/autovivification.pm +++ b/lib/autovivification.pm @@ -11,13 +11,13 @@ autovivification - Lexically disable autovivification. =head1 VERSION -Version 0.09 +Version 0.10 =cut our $VERSION; BEGIN { - $VERSION = '0.09'; + $VERSION = '0.10'; } =head1 SYNOPSIS