]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
Importing Variable-Magic-0.12.tar.gz v0.12
authorVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 16:24:45 +0000 (18:24 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 16:24:45 +0000 (18:24 +0200)
Changes
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index 0d1b8c27271db4614818b4786605f6f18b0fd557..f725b882198a3837811c56b9633a309833ffc30a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Variable-Magic
 
+0.12    2008-02-07 18:15 UTC
+        + Fix : POD error. Thanks to Chris Williams (BinGOs) for the quick
+                feedback.
+
 0.11    2008-02-07 17:55 UTC
         + Add : Copy callbacks now receive the current key/index in $_[2].
                 The current value/element is now in $_[3].
index 1312412cbd55e6a6def8f75034fe2330eef1bed9..00e65e7cd87a1e6b1e2b3efde5c8c599356e9cc3 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Variable-Magic
-version:             0.11
+version:             0.12
 abstract:            Associate user-defined magic to variables from Perl.
 license:             perl
 author:              
diff --git a/README b/README
index f31437cd31ddea8004950fa498ea8d0e96a67aa5..35388759b33f4e281b6d337f3811a5b3ecf4093f 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.11
+    Version 0.12
 
 SYNOPSIS
         use Variable::Magic qw/wizard cast dispell/;
index 6e767b969ec530fc01adc280f5cae420ad9ff1e1..dd41d05ac7c21de32a6b6377d153d6625d145489 100644 (file)
@@ -13,13 +13,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.11
+Version 0.12
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.11';
+ $VERSION = '0.12';
 }
 
 =head1 SYNOPSIS
@@ -135,8 +135,12 @@ The places where magic is invoked have changed a bit through perl history. Here'
 
 =head2 B<5.10.0>
 
+=over 4
+
 =item Since C<PERL_MAGIC_uvar> is uppercased, C<hv_magic_check()> triggers 'copy' magic on hash stores for (non-tied) hashes that also have 'uvar' magic.
 
+=back
+
 =head1 CONSTANTS
 
 =head2 C<SIG_MIN>