From: Vincent Pit Date: Mon, 20 Oct 2014 23:45:33 +0000 (-0200) Subject: This is 0.55 X-Git-Tag: v0.55^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=6465e2c2aa07f44029809c486baeb1fd81aaa7eb This is 0.55 --- diff --git a/Changes b/Changes index f8a833d..4ae98ac 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Variable-Magic +0.55 2014-10-20 23:45 UTC + + Fix : [RT #99319] : t/18-opinfo.t: test failure due to change in + perl 5 blead + The new METHOP op class added in perl 5.21.5 is now supported. + Thanks James E Keenan for reporting. + 0.54 2014-09-22 17:30 UTC + Add : The new constant VMG_COMPAT_CODE_COPY_CLONE evaluates to true if your perl calls 'copy' magic when a magical code prototype diff --git a/META.json b/META.json index 4e95a78..c8984f4 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142060", + "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690", "license" : [ "perl_5" ], @@ -60,5 +60,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git" } }, - "version" : "0.54" + "version" : "0.55" } diff --git a/META.yml b/META.yml index 8662de5..2664b46 100644 --- a/META.yml +++ b/META.yml @@ -14,7 +14,7 @@ configure_requires: Config: '0' ExtUtils::MakeMaker: '0' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142060' +generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -35,4 +35,4 @@ 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.54' +version: '0.55' diff --git a/README b/README index 23db4c3..e344be9 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Magic - Associate user-defined magic to variables from Perl. VERSION - Version 0.54 + Version 0.55 SYNOPSIS use Variable::Magic qw; @@ -576,11 +576,6 @@ DEPENDENCIES Carp (core since perl 5), XSLoader (since 5.6.0). - Copy tests need Tie::Array (core since perl 5.005) and Tie::Hash (since - 5.002). Some uvar tests need Hash::Util::FieldHash (since 5.9.4). Glob - tests need Symbol (since 5.002). Threads tests need threads and - threads::shared (both since 5.7.3). - SEE ALSO perlguts and perlapi for internal information about magic. diff --git a/lib/Variable/Magic.pm b/lib/Variable/Magic.pm index 2ebb5d6..1958edb 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.54 +Version 0.55 =cut our $VERSION; BEGIN { - $VERSION = '0.54'; + $VERSION = '0.55'; } =head1 SYNOPSIS