]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
This is 0.12 v0.12
authorVincent Pit <vince@profvince.com>
Thu, 5 Sep 2013 17:21:20 +0000 (19:21 +0200)
committerVincent Pit <vince@profvince.com>
Thu, 5 Sep 2013 17:21:20 +0000 (19:21 +0200)
Changes
META.json
META.yml
README
lib/autovivification.pm

diff --git a/Changes b/Changes
index 86a9de36e847efb12afbe5c90b88dded37dd2137..aba70cceb40a3a05d0a9df43ab8187647be0faad 100644 (file)
--- 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.
index 712182e24a29ab3f508cb3320f772cc758f5bd71..893dbc97678d8fa4c5db071c6957f11e5463988f 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.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"
 }
index a1b08f50d91ecc8535709f8e3f1d8df6451ac1a5..e913712ff217318f1520160ef06748a20e359e57 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.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 7d750e7808d1437e2e9f1ff45299340f0d8e37cf..3588451e479fdf1c1bd69553dc9cbed3205f0469 100644 (file)
--- 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.
index 8d68dc774cb90d384276fdbc89748d3852654005..d1a07721d2bd5dffbf8feef94f9b691ae3b9c22b 100644 (file)
@@ -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