From: Vincent Pit Date: Wed, 11 Mar 2015 15:07:32 +0000 (-0300) Subject: This is 0.56 X-Git-Tag: v0.56^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=cf730c379ab00aa65d4ed8f08e2dae34a35e3ffc This is 0.56 --- diff --git a/Changes b/Changes index 4ae98ac..f7f4d86 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,22 @@ Revision history for Variable-Magic +0.56 2015-03-11 15:15 UTC + + Fix : [RT #101410] : Install fails in blead + Even though the change that caused this error was reverted from + blead, lvalue uses of ERRSV have been removed from this module + so that there will be no breakage when this change is possibly + reintroduced in the following months. + Thanks Dave Rolsky for reporting. + + Tst : $ENV{$Config{ldlibpthname}} is now preserved on all platforms, + which will address failures of t/17-ctl.t with unusual + compilers (like icc) that link all their compiled objects to + their own libraries. + + Tst : The global destruction test is now only run on perl 5.13.4 and + higher, and only if either Perl::Destruct::Level is installed + or PERL_DESTRUCT_LEVEL is set and the perl is a debugging perl. + This will solve rare crashes of t/15-self.t on perl 5.13.3 and + older. + 0.55 2014-10-20 23:45 UTC + Fix : [RT #99319] : t/18-opinfo.t: test failure due to change in perl 5 blead diff --git a/META.json b/META.json index c8984f4..edf7a9e 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.142690", + "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001", "license" : [ "perl_5" ], @@ -28,7 +28,8 @@ "ExtUtils::MakeMaker" : "0", "Test::More" : "0", "XSLoader" : "0", - "base" : "0" + "base" : "0", + "lib" : "0" } }, "configure" : { @@ -60,5 +61,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git" } }, - "version" : "0.55" + "version" : "0.56" } diff --git a/META.yml b/META.yml index 2664b46..b4f5ecf 100644 --- a/META.yml +++ b/META.yml @@ -10,11 +10,12 @@ build_requires: Test::More: '0' XSLoader: '0' base: '0' + lib: '0' configure_requires: Config: '0' ExtUtils::MakeMaker: '0' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690' +generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -35,4 +36,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.55' +version: '0.56' diff --git a/README b/README index e344be9..c6dbb7d 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Magic - Associate user-defined magic to variables from Perl. VERSION - Version 0.55 + Version 0.56 SYNOPSIS use Variable::Magic qw; @@ -602,7 +602,7 @@ SUPPORT . COPYRIGHT & LICENSE - Copyright 2007,2008,2009,2010,2011,2012,2013,2014 Vincent Pit, all + Copyright 2007,2008,2009,2010,2011,2012,2013,2014,2015 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it diff --git a/lib/Variable/Magic.pm b/lib/Variable/Magic.pm index 6174935..b8f8c5e 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.55 +Version 0.56 =cut our $VERSION; BEGIN { - $VERSION = '0.55'; + $VERSION = '0.56'; } =head1 SYNOPSIS