From: Vincent Pit Date: Tue, 20 Sep 2022 21:45:45 +0000 (+0200) Subject: This is 0.63 X-Git-Tag: v0.63^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=ceb60f4d90a0e40ec31ed814b73760a57b3376f2 This is 0.63 --- diff --git a/Changes b/Changes index 54284b5..2be8a94 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for Variable-Magic +0.63 2022-09-20 21:45 UTC + This is a maintenance release. The code contains no functional change. + Satisfied users of version 0.62 can skip this update. + + Fix : [RT #144052] : Add support for 5.37.3s PADSV_STORE optimization + B.pm-related tests have been taught about this new thing. + Thanks Richard Leach for contributing a patch. + + Upd : Contact info. + 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 diff --git a/META.json b/META.json index 17b9e2a..f15db0e 100644 --- a/META.json +++ b/META.json @@ -1,10 +1,10 @@ { "abstract" : "Associate user-defined magic to variables from Perl.", "author" : [ - "Vincent Pit " + "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010", + "generated_by" : "ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], @@ -39,7 +39,6 @@ }, "configure" : { "requires" : { - "Config" : "0", "ExtUtils::MakeMaker" : "0" } }, @@ -56,6 +55,7 @@ "release_status" : "stable", "resources" : { "bugtracker" : { + "mailto" : "bug-variable-magic@rt.cpan.org", "web" : "http://rt.cpan.org/Dist/Display.html?Name=Variable-Magic" }, "homepage" : "http://search.cpan.org/dist/Variable-Magic/", @@ -63,9 +63,11 @@ "http://dev.perl.org/licenses/" ], "repository" : { - "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git" + "type" : "git", + "url" : "http://git.vpit.fr/perl/modules/Variable-Magic.git/", + "web" : "http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git" } }, - "version" : "0.62", - "x_serialization_backend" : "JSON::PP version 2.94" + "version" : "0.63", + "x_serialization_backend" : "JSON::PP version 4.06" } diff --git a/META.yml b/META.yml index 30c72dd..f4051a1 100644 --- a/META.yml +++ b/META.yml @@ -1,7 +1,7 @@ --- abstract: 'Associate user-defined magic to variables from Perl.' author: - - 'Vincent Pit ' + - 'Vincent Pit ' build_requires: Carp: '0' Config: '0' @@ -17,10 +17,9 @@ build_requires: base: '0' lib: '0' configure_requires: - Config: '0' ExtUtils::MakeMaker: '0' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010' +generated_by: 'ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -40,6 +39,6 @@ resources: bugtracker: http://rt.cpan.org/Dist/Display.html?Name=Variable-Magic 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.62' + repository: http://git.vpit.fr/perl/modules/Variable-Magic.git/ +version: '0.63' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/README b/README index 925545c..9e1af8f 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Magic - Associate user-defined magic to variables from Perl. VERSION - Version 0.62 + Version 0.63 SYNOPSIS use Variable::Magic qw; @@ -628,7 +628,7 @@ SEE ALSO perltie and overload for other ways of enhancing objects. AUTHOR - Vincent Pit, "", . + Vincent Pit "". You can contact me by mail or on "irc.perl.org" (vincent). @@ -645,8 +645,8 @@ SUPPORT perldoc Variable::Magic COPYRIGHT & LICENSE - Copyright 2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017 Vincent - Pit, all rights reserved. + Copyright 2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2022 + 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 f7258c1..0690786 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.62 +Version 0.63 =cut our $VERSION; BEGIN { - $VERSION = '0.62'; + $VERSION = '0.63'; } =head1 SYNOPSIS