From: Vincent Pit Date: Sat, 4 Nov 2017 17:00:11 +0000 (+0100) Subject: This is 0.04 X-Git-Tag: v0.04^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Temp.git;a=commitdiff_plain;h=a0354dc7afe3f6671a1b3e2bcc28297d75a9e7dd This is 0.04 --- diff --git a/Changes b/Changes index e324437..f04312a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Variable-Temp +0.04 2017-11-04 17:00 UTC + + Fix : Test failures on perl 5.27.5 and above. + + Fix : Test::More is no longer a dependency. + 0.03 2015-04-06 12:55 UTC + Tst : t/13-magic.t will no longer fail with a 'planned twice' error when Variable::Magic's version is not recent enough. diff --git a/META.json b/META.json index b60170b..24367dc 100644 --- a/META.json +++ b/META.json @@ -4,13 +4,13 @@ "Vincent Pit " ], "dynamic_config" : 0, - "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001", + "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-Temp", "no_index" : { @@ -40,7 +40,6 @@ "requires" : { "Exporter" : "0", "Scope::Upper" : "0", - "Test::More" : "0", "Variable::Magic" : "0.51", "base" : "0", "perl" : "5.006" @@ -60,5 +59,6 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Temp.git" } }, - "version" : "0.03" + "version" : "0.04", + "x_serialization_backend" : "JSON::PP version 2.94" } diff --git a/META.yml b/META.yml index 2a0286c..acd93d2 100644 --- a/META.yml +++ b/META.yml @@ -13,7 +13,7 @@ build_requires: configure_requires: ExtUtils::MakeMaker: '0' dynamic_config: 0 -generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001' +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 @@ -26,7 +26,6 @@ no_index: requires: Exporter: '0' Scope::Upper: '0' - Test::More: '0' Variable::Magic: '0.51' base: '0' perl: '5.006' @@ -35,4 +34,5 @@ resources: homepage: http://search.cpan.org/dist/Variable-Temp/ license: http://dev.perl.org/licenses/ repository: http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Temp.git -version: '0.03' +version: '0.04' +x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/README b/README index 18738e8..cd1d621 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Temp - Temporarily change the value of a variable. VERSION - Version 0.03 + Version 0.04 SYNOPSIS use Variable::Temp 'temp'; @@ -103,7 +103,7 @@ SUPPORT perldoc Variable::Temp COPYRIGHT & LICENSE - Copyright 2015 Vincent Pit, all rights reserved. + Copyright 2015,2017 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/Temp.pm b/lib/Variable/Temp.pm index 75aff5d..6951e52 100644 --- a/lib/Variable/Temp.pm +++ b/lib/Variable/Temp.pm @@ -11,13 +11,13 @@ Variable::Temp - Temporarily change the value of a variable. =head1 VERSION -Version 0.03 +Version 0.04 =cut our $VERSION; BEGIN { - $VERSION = '0.03'; + $VERSION = '0.04'; } =head1 SYNOPSIS