]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
This is 0.10 v0.10
authorVincent Pit <vince@profvince.com>
Wed, 24 Aug 2011 14:58:40 +0000 (16:58 +0200)
committerVincent Pit <vince@profvince.com>
Wed, 24 Aug 2011 14:58:40 +0000 (16:58 +0200)
Changes
META.json
META.yml
README
lib/autovivification.pm

diff --git a/Changes b/Changes
index 97a9c82e8da5e6358f9fa9558f1738412014f33e..12521b84a5bc4dd471bd609ad67e7ae87e1dea67 100644 (file)
--- 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
index 986a31fbca8c32a239d5c1762469fcfeabb1bead..dbbebb537dd73b579f78b168f7374d38044cdd49 100644 (file)
--- 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"
 }
index eb399a9d6aa22a6ad55a89f042b32a89fba9fa8a..7486735280541d13d82a74330233da23a91d4141 100644 (file)
--- 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 <perl@profvince.com>
-license:            perl
-distribution_type:  module
-configure_requires:
-    ExtUtils::MakeMaker:  0
+  - 'Vincent Pit <perl@profvince.com>'
 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 b59fd7abb8b03c32114c002ae27fdc51f4614d10..0cb0b9eff4189c69aeb581b3c7550456b649f5b9 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     autovivification - Lexically disable autovivification.
 
 VERSION
-    Version 0.09
+    Version 0.10
 
 SYNOPSIS
         no autovivification;
index 2890cace2f79a6b81c1f20d82d98bcf69b783f8c..688907a295f8776a61acc7206f59047f175fad36 100644 (file)
@@ -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