]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.46 v0.46
authorVincent Pit <vince@profvince.com>
Sun, 23 Jan 2011 16:44:38 +0000 (17:44 +0100)
committerVincent Pit <vince@profvince.com>
Sun, 23 Jan 2011 16:44:38 +0000 (17:44 +0100)
Changes
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index d4de87c0967f8293fe51be4ddea39f517a70a20c..b97a2e2abce5b8b34fb5344428f7910d11fab82a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,12 @@
 Revision history for Variable-Magic
 
+0.46    2011-01-23 16:45 UTC
+        + Fix : [RT #64866] : Assertion failure with perl 5.13.9.
+                The real problem was that dispell() wasn't properly resetting
+                the magical sv flags, which became visible in the test suite
+                only with perl 5.13.9.
+                Thanks Joshua ben Jore for reporting.
+
 0.45    2010-11-21 23:15 UTC
         This is a maintenance release. The code contains no functional change.
         Users of 0.44 can skip this update.
index a19272b87b5e33088d717d6eddb8430751d39bf7..3ea6960e1b56294f80894402766a2bca152343ae 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Variable-Magic
-version:            0.45
+version:            0.46
 abstract:           Associate user-defined magic to variables from Perl.
 author:
     - Vincent Pit <perl@profvince.com>
diff --git a/README b/README
index 1158f96677f89dd78182322be358d00e6e1ef7a6..ac81e42c52bcf6d095d254e9dcbd72d4238ba4e6 100644 (file)
--- a/README
+++ b/README
@@ -2,10 +2,10 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.45
+    Version 0.46
 
 SYNOPSIS
-        use Variable::Magic qw/wizard cast VMG_OP_INFO_NAME/;
+        use Variable::Magic qw<wizard cast VMG_OP_INFO_NAME>;
 
         { # A variable tracer
          my $wiz = wizard set  => sub { print "now set to ${$_[0]}!\n" },
@@ -363,7 +363,7 @@ COOKBOOK
         {
          package Magical::UserData;
 
-         use Variable::Magic qw/wizard cast getdata/;
+         use Variable::Magic qw<wizard cast getdata>;
 
          my $wiz = wizard data => sub { \$_[1] };
 
@@ -543,7 +543,7 @@ SUPPORT
     <http://www.profvince.com/perl/cover/Variable-Magic>.
 
 COPYRIGHT & LICENSE
-    Copyright 2007,2008,2009,2010 Vincent Pit, all rights reserved.
+    Copyright 2007,2008,2009,2010,2011 Vincent Pit, all rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.
index c52dcc8459df8d62455edab6c956fffe0672685c..141d966ab9f90ebe443deee6ba6dab8be1c3f2f5 100644 (file)
@@ -11,13 +11,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.45
+Version 0.46
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.45';
+ $VERSION = '0.46';
 }
 
 =head1 SYNOPSIS