From: Vincent Pit Date: Tue, 5 Jun 2012 21:39:00 +0000 (+0200) Subject: This is 0.49 X-Git-Tag: v0.49^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=02f11dff4858109f73a7c12ca146b9e33c9e229b This is 0.49 --- diff --git a/Changes b/Changes index 1ac305f..7f9cb3e 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,14 @@ Revision history for Variable-Magic +0.49 2012-06-05 21:40 UTC + This is a maintenance release. The code contains no functional change. + Satisfied users of version 0.48 can skip this update. + + Fix : [RT #77644] : t/17_ctl.t fails in test 44 since 5.17.0. + This test has been taught about perl 5.17.0. + Thanks Reini Urban for reporting. + + Tst : t/99-kwalitee.t will be skipped when only problematic versions + of its dependencies are available. + 0.48 2012-02-17 23:40 UTC + Add : You can now pass a reference to undef as the magic callback in order to install a no-op callback. diff --git a/META.json b/META.json index aec4415..f942fbe 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.120351", + "generated_by" : "ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter version 2.120921", "license" : [ "perl_5" ], @@ -60,5 +60,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git" } }, - "version" : "0.48" + "version" : "0.49" } diff --git a/META.yml b/META.yml index b40f326..8b18a69 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.62, CPAN::Meta::Converter version 2.120351' +generated_by: 'ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter version 2.120921' 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.48 +version: 0.49 diff --git a/README b/README index abba925..494ef72 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Magic - Associate user-defined magic to variables from Perl. VERSION - Version 0.48 + Version 0.49 SYNOPSIS use Variable::Magic qw; diff --git a/lib/Variable/Magic.pm b/lib/Variable/Magic.pm index 0a727bd..b22fee6 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.48 +Version 0.49 =cut our $VERSION; BEGIN { - $VERSION = '0.48'; + $VERSION = '0.49'; } =head1 SYNOPSIS