]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.21_01 v0.21_01
authorVincent Pit <vince@profvince.com>
Mon, 22 Sep 2008 13:24:57 +0000 (15:24 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 22 Sep 2008 13:24:57 +0000 (15:24 +0200)
Changes
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index 771c22e71a74d45517c90372f7e9a7daf26e1d20..fbbc9ddd3b5eac93100d4c460e6d743f8a70e49c 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Variable-Magic
 
+0.21_01 2008-09-22 13:25 UTC
+        + Chg : Shrink the context data.
+        + Fix : Enable thread safety features for perls that just lack
+                MY_CXT_CLONE.
+        + Tst : Output threads and threads::shared versions in threads tests.
+
 0.20    2008-09-20 23:35 UTC
         + Fix : The module is now thread safe. You can test if it had been
                 built with thread safety features enabled through the
index cac5360bf6afcb30d20037b70deabe49ee6bac87..981a6f0a40619f5c39f5571ba24529cb8e9105b5 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Variable-Magic
-version:             0.20
+version:             0.21_01
 abstract:            Associate user-defined magic to variables from Perl.
 license:             perl
 author:              
diff --git a/README b/README
index 7e89615a996e668ab39c2fa058d18332108a96c8..78c47b386653adea52d5c21effacf4e8da3a8169 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.20
+    Version 0.21_01
 
 SYNOPSIS
         use Variable::Magic qw/wizard cast dispell/;
index 7bb41745ebc13de5cdf46310b0887696703c53b0..82176b43b2ed8df093dbcf2f2ce00dca88234d26 100644 (file)
@@ -13,13 +13,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.20
+Version 0.21_01
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.20';
+ $VERSION = '0.21_01';
 }
 
 =head1 SYNOPSIS