From: Vincent Pit Date: Tue, 6 Sep 2016 22:34:17 +0000 (-0300) Subject: This is 0.60 X-Git-Tag: v0.60^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=2a7199760cc1080be8e62e425d74a85f4eebcdfc This is 0.60 --- diff --git a/Changes b/Changes index a023cb8..c7cd521 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,14 @@ Revision history for Variable-Magic +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 + to a collection of .h files in the xsh subdirectory. + + Fix : [RT #128989] : Bleadperl v5.25.3-266-g1d7e644 breaks V::M. + Len magic is no longer called for negative array indices + fetches, so the relevant tests are now skipped. + Thanks Andreas Koenig for reporting. + 0.59 2015-10-05 19:05 UTC + Chg : The magic callbacks are now always executed in a new stack. This should have no negative impact (performance-wise or diff --git a/META.json b/META.json index 924ecae..78b85e0 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.150005", + "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], @@ -66,6 +66,6 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git" } }, - "version" : "0.59", - "x_serialization_backend" : "JSON::PP version 2.27300" + "version" : "0.60", + "x_serialization_backend" : "JSON::PP version 2.27400" } diff --git a/META.yml b/META.yml index 1d4ce20..6dd0090 100644 --- a/META.yml +++ b/META.yml @@ -20,7 +20,7 @@ configure_requires: Config: '0' ExtUtils::MakeMaker: '0' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.150005' +generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -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.59' -x_serialization_backend: 'CPAN::Meta::YAML version 0.016' +version: '0.60' +x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/README b/README index ba89f24..ab958ea 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Magic - Associate user-defined magic to variables from Perl. VERSION - Version 0.59 + Version 0.60 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 Vincent Pit, all - rights reserved. + Copyright 2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 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 7f82233..0ca916b 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.59 +Version 0.60 =cut our $VERSION; BEGIN { - $VERSION = '0.59'; + $VERSION = '0.60'; } =head1 SYNOPSIS