]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
This is 0.17 v0.17
authorVincent Pit <perl@profvince.com>
Mon, 31 Jul 2017 17:15:20 +0000 (19:15 +0200)
committerVincent Pit <perl@profvince.com>
Mon, 31 Jul 2017 17:15:20 +0000 (19:15 +0200)
Changes
META.json
META.yml
README
lib/autovivification.pm

diff --git a/Changes b/Changes
index 52d0ebcad39de94fa66fa99cd61536722c6c8cbb..ec1ca15938b2e9fbcccbaf52fe50aa1b90e5cbd7 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,12 @@
 Revision history for autovivification
 
+0.17    2017-07-31 17:15 UTC
+        + Chg : A large chunk of boilerplate XS code, which is also used in
+                other XS modules, has been factored out of the main .xs file
+                to a collection of .h files in the xsh subdirectory.
+        + Fix : The new optimization in perl 5.27.3 for scalar(keys(%$hashref))
+                is now correcty supported.
+
 0.16    2015-07-01 14:30 UTC
         + Fix : Broken linkage on Windows.
 
index cf9ac3493d1967a4edf9adc947e56db5f43567fe..23383ff662d68322a38c3f61c254ff48b175695d 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,13 +4,13 @@
       "Vincent Pit <perl@profvince.com>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150005",
+   "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010",
    "license" : [
       "perl_5"
    ],
    "meta-spec" : {
       "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
-      "version" : "2"
+      "version" : 2
    },
    "name" : "autovivification",
    "no_index" : {
@@ -55,6 +55,6 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Fautovivification.git"
       }
    },
-   "version" : "0.16",
-   "x_serialization_backend" : "JSON::PP version 2.27300"
+   "version" : "0.17",
+   "x_serialization_backend" : "JSON::PP version 2.94"
 }
index 4b9811abb5fed76eefe5f54a1c242eee6b68787e..c71857d20ad68a951043884dfcc7fdb45576ce55 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -12,7 +12,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150005'
+generated_by: 'ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -30,5 +30,5 @@ 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.16'
-x_serialization_backend: 'CPAN::Meta::YAML version 0.016'
+version: '0.17'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index 9dfce2597178718ab8a7ce58b4f30dce8bc89c8f..8ae2572aa4baf307bae1b6fa429ccb827d94d278 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     autovivification - Lexically disable autovivification.
 
 VERSION
-    Version 0.16
+    Version 0.17
 
 SYNOPSIS
         no autovivification;
@@ -182,15 +182,12 @@ SUPPORT
 
         perldoc autovivification
 
-    Tests code coverage report is available at
-    <http://www.profvince.com/perl/cover/autovivification>.
-
 ACKNOWLEDGEMENTS
     Matt S. Trout asked for it.
 
 COPYRIGHT & LICENSE
-    Copyright 2009,2010,2011,2012,2013,2014,2015 Vincent Pit, all rights
-    reserved.
+    Copyright 2009,2010,2011,2012,2013,2014,2015,2017 Vincent Pit, all
+    rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.
index 01eb02ffd3b25683bb2c2fd6d7b6c6db4d903f9c..8b70a75ee51dbbc8c71c6879cd826a6efdfcb8de 100644 (file)
@@ -11,13 +11,13 @@ autovivification - Lexically disable autovivification.
 
 =head1 VERSION
 
-Version 0.16
+Version 0.17
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.16';
+ $VERSION = '0.17';
 }
 
 =head1 SYNOPSIS