From: Vincent Pit Date: Mon, 22 Sep 2008 13:24:57 +0000 (+0200) Subject: This is 0.21_01 X-Git-Tag: v0.21_01^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=6d26a1552b4f00bf007551c7106c699eb0266a60 This is 0.21_01 --- diff --git a/Changes b/Changes index 771c22e..fbbc9dd 100644 --- 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 diff --git a/META.yml b/META.yml index cac5360..981a6f0 100644 --- 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 7e89615..78c47b3 100644 --- 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/; diff --git a/lib/Variable/Magic.pm b/lib/Variable/Magic.pm index 7bb4174..82176b4 100644 --- a/lib/Variable/Magic.pm +++ b/lib/Variable/Magic.pm @@ -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