]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.61 v0.61
authorVincent Pit <perl@profvince.com>
Tue, 24 Jan 2017 15:30:21 +0000 (16:30 +0100)
committerVincent Pit <perl@profvince.com>
Tue, 24 Jan 2017 15:30:21 +0000 (16:30 +0100)
Changes
META.json
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index c7cd521d6cf1aa12c892055a5813ce60ed6407fa..ae6f3879b8ca83ec9ca91d9322b360bc4f5d3df0 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,17 @@
 Revision history for Variable-Magic
 
 Revision history for Variable-Magic
 
+0.61    2017-01-24 15:30 UTC
+        + Fix : [RT #115792] : Latest blead stack unwind work causes infloop
+                in a test.
+                A change in how the core frees temporary values after eval
+                interacted badly with Variable::Magic and caused infinite loops
+                when a free callback was attached to a wizard. This change was
+                temporarily reverted, but is going to be reinstated, and
+                Variable::Magic is now able to play nicely when this happens.
+                Thanks Peter Rabbitson for reporting and David Mitchell for
+                providing a fix.
+
+
 0.60    2016-09-06 22:30 UTC
         + Chg : A large chunk of boilerplate XS code, which is also used in
                 other XS modules, has been factored out of the main .xs file
 0.60    2016-09-06 22:30 UTC
         + Chg : A large chunk of boilerplate XS code, which is also used in
                 other XS modules, has been factored out of the main .xs file
index 78b85e0fcdcfb036237741c91f5a4055c90e675c..d6dc733fc848e5268b9d078b2cfacf74aaa46ddb 100644 (file)
--- a/META.json
+++ b/META.json
@@ -66,6 +66,6 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git"
       }
    },
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git"
       }
    },
-   "version" : "0.60",
+   "version" : "0.61",
    "x_serialization_backend" : "JSON::PP version 2.27400"
 }
    "x_serialization_backend" : "JSON::PP version 2.27400"
 }
index 6dd009005a41612ae3ef026061771f82738315be..7122a5dd405e9fc61cb451a223c9edd8c796fcf6 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -41,5 +41,5 @@ resources:
   homepage: http://search.cpan.org/dist/Variable-Magic/
   license: http://dev.perl.org/licenses/
   repository: http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git
   homepage: http://search.cpan.org/dist/Variable-Magic/
   license: http://dev.perl.org/licenses/
   repository: http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git
-version: '0.60'
+version: '0.61'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index ab958ead3408030258b930b5ada23da01e5f95b8..8b92ba4c1f520f71d955397287249bd9fd4311ba 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.60
+    Version 0.61
 
 SYNOPSIS
         use Variable::Magic qw<wizard cast VMG_OP_INFO_NAME>;
 
 SYNOPSIS
         use Variable::Magic qw<wizard cast VMG_OP_INFO_NAME>;
@@ -645,8 +645,8 @@ SUPPORT
         perldoc Variable::Magic
 
 COPYRIGHT & LICENSE
         perldoc Variable::Magic
 
 COPYRIGHT & LICENSE
-    Copyright 2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Vincent Pit,
-    all rights reserved.
+    Copyright 2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017 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.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.
index 1a13618ecd85684d456ef73d78643e4f402f3258..0a53da0f009d1e0be7512b57767deef575c102e4 100644 (file)
@@ -11,13 +11,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
 
 =head1 VERSION
 
-Version 0.60
+Version 0.61
 
 =cut
 
 our $VERSION;
 BEGIN {
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.60';
+ $VERSION = '0.61';
 }
 
 =head1 SYNOPSIS
 }
 
 =head1 SYNOPSIS