]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.35 v0.35
authorVincent Pit <vince@profvince.com>
Fri, 15 May 2009 20:50:01 +0000 (22:50 +0200)
committerVincent Pit <vince@profvince.com>
Fri, 15 May 2009 20:50:01 +0000 (22:50 +0200)
Changes
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index a0243358a7eb89d65e1c640faa982fb857bbf60f..1299cbfa1fe34a35397c7867d1ca209272831760 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,16 @@
 Revision history for Variable-Magic
 
+0.35    2009-05-15 20:50 UTC
+        This is a maintenance release. Users of 0.34 can skip this update.
+        + Chg : uvar magic used to be enabled for 5.9.5. It now requires 5.10 or
+                later.
+        + Fix : Silence compilation warnings for cxinc().
+        + Rem : The workaround introduced in 0.31 for the "Unknown errors" issue
+                was removed, as regression tests show that 0.34 provides a
+                better fix.
+        + Tst : Skip t/40-threads.t on 5.8.x with old versions of threads and
+                threads::shared.
+
 0.34    2009-04-19 16:55 UTC
         + Fix : Destruction of wizards in require.
         + Fix : "panic: restartop" in 5.10 when dieing at compile time triggers
index 50a9d89a12527a05bf432cca1d4e8cdf708233e2..7d10dbd787ca856bd2b5800387cff5a03df494c1 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Variable-Magic
-version:            0.34
+version:            0.35
 abstract:           Associate user-defined magic to variables from Perl.
 author:
     - Vincent Pit <perl@profvince.com>
@@ -23,7 +23,7 @@ resources:
     bugtracker:  http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Variable-Magic
     homepage:    http://search.cpan.org/dist/Variable-Magic/
     license:     http://dev.perl.org/licenses/
-    repository:  http://git.profvince.com/?p=perl/modules/Variable-Magic.git
+    repository:  http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git
 no_index:
     directory:
         - t
diff --git a/README b/README
index c6f0d2005bb2b2c26682027cc974e770dc62f85e..66072405829000ba0ee9d84b114015f4d9de0de0 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.34
+    Version 0.35
 
 SYNOPSIS
         use Variable::Magic qw/wizard cast VMG_OP_INFO_NAME/;
index 1ae0f1cab641629ee54480f1b718420bc1401afa..44edfe64fccbd69512a15535becb22f6c92cdeed 100644 (file)
@@ -13,13 +13,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.34
+Version 0.35
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.34';
+ $VERSION = '0.35';
 }
 
 =head1 SYNOPSIS