From: Vincent Pit Date: Tue, 24 Jan 2017 15:30:21 +0000 (+0100) Subject: This is 0.61 X-Git-Tag: v0.61^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=10aae11547ebb521f01041bd1a2c23f96f509ee1 This is 0.61 --- diff --git a/Changes b/Changes index c7cd521..ae6f387 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,17 @@ 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 diff --git a/META.json b/META.json index 78b85e0..d6dc733 100644 --- a/META.json +++ b/META.json @@ -66,6 +66,6 @@ "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" } diff --git a/META.yml b/META.yml index 6dd0090..7122a5d 100644 --- 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 -version: '0.60' +version: '0.61' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/README b/README index ab958ea..8b92ba4 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Magic - Associate user-defined magic to variables from Perl. VERSION - Version 0.60 + Version 0.61 SYNOPSIS use Variable::Magic qw; @@ -645,8 +645,8 @@ SUPPORT 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. diff --git a/lib/Variable/Magic.pm b/lib/Variable/Magic.pm index 1a13618..0a53da0 100644 --- a/lib/Variable/Magic.pm +++ b/lib/Variable/Magic.pm @@ -11,13 +11,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl. =head1 VERSION -Version 0.60 +Version 0.61 =cut our $VERSION; BEGIN { - $VERSION = '0.60'; + $VERSION = '0.61'; } =head1 SYNOPSIS