]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
This is 0.08 v0.08
authorVincent Pit <vince@profvince.com>
Mon, 3 Jan 2011 20:53:49 +0000 (21:53 +0100)
committerVincent Pit <vince@profvince.com>
Mon, 3 Jan 2011 20:53:49 +0000 (21:53 +0100)
Changes
META.yml
README
lib/autovivification.pm

diff --git a/Changes b/Changes
index bd04e426cb84d4207cf710ce9329cafbdd079eca..a4129764f6f20cfc5a0b7cddc8e2eb54d2094715 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for autovivification
 
 Revision history for autovivification
 
+0.08    2011-01-03 21:00 UTC
+        + Fix : Building on Windows.
+
 0.07    2010-12-31 16:20 UTC
         + Chg : perl 5.8.3 is required.
         + Doc : Complements and clarifications.
 0.07    2010-12-31 16:20 UTC
         + Chg : perl 5.8.3 is required.
         + Doc : Complements and clarifications.
index 6e85fe7acb0c135e25b4d717b63652ec2fce97ff..9b9a50e9fcc76bd0a35bc9afbaff0812c3f11584 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               autovivification
 --- #YAML:1.0
 name:               autovivification
-version:            0.07
+version:            0.08
 abstract:           Lexically disable autovivification.
 author:
     - Vincent Pit <perl@profvince.com>
 abstract:           Lexically disable autovivification.
 author:
     - Vincent Pit <perl@profvince.com>
diff --git a/README b/README
index d2232631a1699461786e02954f59c5487f7c4927..dc3696a8ddb9f0096c21fe70d30abf92d3802a2f 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     autovivification - Lexically disable autovivification.
 
 VERSION
     autovivification - Lexically disable autovivification.
 
 VERSION
-    Version 0.07
+    Version 0.08
 
 SYNOPSIS
         no autovivification;
 
 SYNOPSIS
         no autovivification;
@@ -105,7 +105,7 @@ METHODS
     Each call to "unimport" adds the specified features to the ones already
     in use in the current lexical scope.
 
     Each call to "unimport" adds the specified features to the ones already
     in use in the current lexical scope.
 
-    When @opts is empty, it defaults to "qw/fetch exists delete/".
+    When @opts is empty, it defaults to "qw<fetch exists delete>".
 
   "import @opts"
     Magically called when "use autovivification @opts" is encountered.
 
   "import @opts"
     Magically called when "use autovivification @opts" is encountered.
@@ -172,7 +172,7 @@ ACKNOWLEDGEMENTS
     Matt S. Trout asked for it.
 
 COPYRIGHT & LICENSE
     Matt S. Trout asked for it.
 
 COPYRIGHT & LICENSE
-    Copyright 2009,2010 Vincent Pit, all rights reserved.
+    Copyright 2009,2010,2011 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.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.
index d98fe60cf5084c37fc878f800376c56f0577996c..2a30853f23445d243a48606457d961f6678d785c 100644 (file)
@@ -11,13 +11,13 @@ autovivification - Lexically disable autovivification.
 
 =head1 VERSION
 
 
 =head1 VERSION
 
-Version 0.07
+Version 0.08
 
 =cut
 
 our $VERSION;
 BEGIN {
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.07';
+ $VERSION = '0.08';
 }
 
 =head1 SYNOPSIS
 }
 
 =head1 SYNOPSIS