From: Vincent Pit Date: Sat, 4 Nov 2017 16:35:03 +0000 (+0100) Subject: This is 0.62 X-Git-Tag: v0.62^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=f55eedad251ca6351a00c8014eb9ab64b800b4af This is 0.62 --- diff --git a/Changes b/Changes index ae6f387..54284b5 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Variable-Magic +0.62 2017-11-04 16:35 UTC + + Fix : [RT #123314] : Compatibility with CV-in-stash optimisation + Thanks Father Chrysostomos for reporting and contributing a + patch. + 0.61 2017-01-24 15:30 UTC + Fix : [RT #115792] : Latest blead stack unwind work causes infloop in a test. diff --git a/META.json b/META.json index d6dc733..17b9e2a 100644 --- a/META.json +++ b/META.json @@ -4,13 +4,13 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010", + "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", - "version" : "2" + "version" : 2 }, "name" : "Variable-Magic", "no_index" : { @@ -66,6 +66,6 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git" } }, - "version" : "0.61", - "x_serialization_backend" : "JSON::PP version 2.27400" + "version" : "0.62", + "x_serialization_backend" : "JSON::PP version 2.94" } diff --git a/META.yml b/META.yml index 7122a5d..30c72dd 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.24, CPAN::Meta::Converter version 2.150010' +generated_by: 'ExtUtils::MakeMaker version 7.3, 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.61' +version: '0.62' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/README b/README index 8b92ba4..925545c 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Magic - Associate user-defined magic to variables from Perl. VERSION - Version 0.61 + Version 0.62 SYNOPSIS use Variable::Magic qw; diff --git a/lib/Variable/Magic.pm b/lib/Variable/Magic.pm index 0a53da0..e35a3c3 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.61 +Version 0.62 =cut our $VERSION; BEGIN { - $VERSION = '0.61'; + $VERSION = '0.62'; } =head1 SYNOPSIS