]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.23 v0.23
authorVincent Pit <vince@profvince.com>
Sat, 11 Oct 2008 17:25:59 +0000 (19:25 +0200)
committerVincent Pit <vince@profvince.com>
Sat, 11 Oct 2008 17:25:59 +0000 (19:25 +0200)
Changes
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index ab4d0e42030cdb89b2e8cd97fb90b9fbf6f3df04..85043f866f6abbe129f72eab200c319a1d785929 100644 (file)
--- 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
index 7909735587550f2b9d8a21b3c0e9b0b57872d896..7d7b9babb2cb593deddf9dc4018c05341166d41c 100644 (file)
--- 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 61b60ab6ab683ee56d0b4a5499a4f00a6b9d5e75..7df17315e7e2370fefc25f04a2c3d49cacc5b50e 100644 (file)
--- 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, "<perl at profvince.com>", <http://www.profvince.com>.
 
-    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
index 97ff04cff2a504f8b8e0da709138fe1cbec5d261..3a888febbfa35cb82f82a7e7307855cb848b8c1b 100644 (file)
@@ -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