From: Vincent Pit Date: Mon, 3 Jan 2011 20:53:49 +0000 (+0100) Subject: This is 0.08 X-Git-Tag: v0.08^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fautovivification.git;a=commitdiff_plain;h=1740addb4cafa0e3bde5f257fd8d6ce00dfde2c3 This is 0.08 --- diff --git a/Changes b/Changes index bd04e42..a412976 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ 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. diff --git a/META.yml b/META.yml index 6e85fe7..9b9a50e 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: autovivification -version: 0.07 +version: 0.08 abstract: Lexically disable autovivification. author: - Vincent Pit diff --git a/README b/README index d223263..dc3696a 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME autovivification - Lexically disable autovivification. VERSION - Version 0.07 + Version 0.08 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. - When @opts is empty, it defaults to "qw/fetch exists delete/". + When @opts is empty, it defaults to "qw". "import @opts" Magically called when "use autovivification @opts" is encountered. @@ -172,7 +172,7 @@ ACKNOWLEDGEMENTS 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. diff --git a/lib/autovivification.pm b/lib/autovivification.pm index d98fe60..2a30853 100644 --- a/lib/autovivification.pm +++ b/lib/autovivification.pm @@ -11,13 +11,13 @@ autovivification - Lexically disable autovivification. =head1 VERSION -Version 0.07 +Version 0.08 =cut our $VERSION; BEGIN { - $VERSION = '0.07'; + $VERSION = '0.08'; } =head1 SYNOPSIS