]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.34 v0.34
authorVincent Pit <vince@profvince.com>
Sun, 19 Apr 2009 16:53:19 +0000 (18:53 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 19 Apr 2009 16:53:19 +0000 (18:53 +0200)
Changes
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index a3227afc7fd0246a4a8f5e7420359ff2702c7f73..a0243358a7eb89d65e1c640faa982fb857bbf60f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Variable-Magic
 
+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
+                a destructor.
+
 0.33    2009-03-26 00:00 UTC
         + Chg : cast() and getsig() now croak too when an invalid signature is
                 passed.
index 4cead176bbafe646a3407e434a09626b7d50efbe..50a9d89a12527a05bf432cca1d4e8cdf708233e2 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Variable-Magic
-version:            0.33
+version:            0.34
 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/perl/modules/Variable-Magic.git
+    repository:  http://git.profvince.com/?p=perl/modules/Variable-Magic.git
 no_index:
     directory:
         - t
diff --git a/README b/README
index 648aaf7be7d7809f6579cce69cf5613deb5c90d3..c6f0d2005bb2b2c26682027cc974e770dc62f85e 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.33
+    Version 0.34
 
 SYNOPSIS
         use Variable::Magic qw/wizard cast VMG_OP_INFO_NAME/;
index db71e5e0e625a457d48f967f7b917acb6e1258dd..1ae0f1cab641629ee54480f1b718420bc1401afa 100644 (file)
@@ -13,13 +13,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.33
+Version 0.34
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.33';
+ $VERSION = '0.34';
 }
 
 =head1 SYNOPSIS