From: Vincent Pit Date: Sat, 11 Oct 2008 17:25:59 +0000 (+0200) Subject: This is 0.23 X-Git-Tag: v0.23^0 X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=bcc72c6633aec36f391f879f8145c48bf7c9c4dc;hp=02f8f67606edc22d31e01944a649f5e0824b33ba;p=perl%2Fmodules%2FVariable-Magic.git This is 0.23 --- diff --git a/Changes b/Changes index ab4d0e4..85043f8 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Variable-Magic +0.23 2008-10-11 17:25 UTC + + Fix : Building on perls with multiplicity but not ithreads. + 0.22 2008-09-29 19:40 UTC + Doc : Explain how magic differs from overloading. + Fix : Disable thread safety for perl 5.8 on Windows. If you want it diff --git a/META.yml b/META.yml index 7909735..7d7b9ba 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Variable-Magic -version: 0.22 +version: 0.23 abstract: Associate user-defined magic to variables from Perl. license: perl author: diff --git a/README b/README index 61b60ab..7df1731 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Magic - Associate user-defined magic to variables from Perl. VERSION - Version 0.22 + Version 0.23 SYNOPSIS use Variable::Magic qw/wizard cast dispell/; @@ -340,8 +340,7 @@ SEE ALSO AUTHOR Vincent Pit, "", . - You can contact me by mail or on #perl @ FreeNode (vincent or - Prof_Vince). + You can contact me by mail or on "irc.perl.org" (vincent). BUGS Please report any bugs or feature requests to "bug-variable-magic at diff --git a/lib/Variable/Magic.pm b/lib/Variable/Magic.pm index 97ff04c..3a888fe 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.22 +Version 0.23 =cut our $VERSION; BEGIN { - $VERSION = '0.22'; + $VERSION = '0.23'; } =head1 SYNOPSIS