From: Vincent Pit Date: Thu, 5 Sep 2013 17:21:20 +0000 (+0200) Subject: This is 0.12 X-Git-Tag: v0.12^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fautovivification.git;a=commitdiff_plain;h=9ef6276ffc1c3943d1b167876079649480efafd7;hp=d5f31c66602da32d1f6b30dde597bfde9be741b2 This is 0.12 --- diff --git a/Changes b/Changes index 86a9de3..aba70cc 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for autovivification +0.12 2013-09-05 17:20 UTC + + Fix : Check functions are now replaced and restored in a thread-safe + manner, either by using the wrap_op_checker() function from perl + when it is available (starting from perl 5.16) or by taking the + OP_REFCNT mutex on older perls. + + Tst : Author tests are no longer bundled with this distribution. + They are only made available to authors in the git repository. + 0.11 2013-02-08 19:25 UTC This is a maintenance release. The code contains no functional change. Satisfied users of version 0.10 can skip this update. diff --git a/META.json b/META.json index 712182e..893dbc9 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.120921", + "generated_by" : "ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140", "license" : [ "perl_5" ], @@ -44,7 +44,7 @@ "release_status" : "stable", "resources" : { "bugtracker" : { - "web" : "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=autovivification" + "web" : "http://rt.cpan.org/Dist/Display.html?Name=autovivification" }, "homepage" : "http://search.cpan.org/dist/autovivification/", "license" : [ @@ -54,5 +54,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Fautovivification.git" } }, - "version" : "0.11" + "version" : "0.12" } diff --git a/META.yml b/META.yml index a1b08f5..e913712 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.64, CPAN::Meta::Converter version 2.120921' +generated_by: 'ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -25,8 +25,8 @@ requires: XSLoader: 0 perl: 5.008003 resources: - bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=autovivification + bugtracker: http://rt.cpan.org/Dist/Display.html?Name=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.11 +version: 0.12 diff --git a/README b/README index 7d750e7..3588451 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME autovivification - Lexically disable autovivification. VERSION - Version 0.11 + Version 0.12 SYNOPSIS no autovivification; @@ -151,7 +151,7 @@ DEPENDENCIES A C compiler. This module may happen to build with a C++ compiler as well, but don't rely on it, as no guarantee is made in this regard. - XSLoader (standard since perl 5.006). + XSLoader (standard since perl 5.6.0). SEE ALSO perlref. diff --git a/lib/autovivification.pm b/lib/autovivification.pm index 8d68dc7..d1a0772 100644 --- a/lib/autovivification.pm +++ b/lib/autovivification.pm @@ -11,13 +11,13 @@ autovivification - Lexically disable autovivification. =head1 VERSION -Version 0.11 +Version 0.12 =cut our $VERSION; BEGIN { - $VERSION = '0.11'; + $VERSION = '0.12'; } =head1 SYNOPSIS