From: Vincent Pit Date: Mon, 6 Apr 2015 12:55:30 +0000 (-0300) Subject: This is 0.03 X-Git-Tag: v0.03^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Temp.git;a=commitdiff_plain;h=e87f35b3d95dc13d180f7053f0ef75535fc1b115 This is 0.03 --- diff --git a/Changes b/Changes index c11a2e5..e324437 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for Variable-Temp +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. + + Tst : Tests from t/10-base.t and t/20-lvalue.t that localize array + elements at the end of the array will now be skipped before + perl 5.12, as a bug in perl prevents the array length from + being reset at scope end. + 0.02 2015-04-01 22:55 UTC + Add : temp() can now be applied to arrays and hashes. + Add : The new set_temp() function is a non-lvalue alternative to diff --git a/META.json b/META.json index ca6a384..b60170b 100644 --- a/META.json +++ b/META.json @@ -60,5 +60,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Temp.git" } }, - "version" : "0.02" + "version" : "0.03" } diff --git a/META.yml b/META.yml index 086f853..2a0286c 100644 --- a/META.yml +++ b/META.yml @@ -35,4 +35,4 @@ 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.02' +version: '0.03' diff --git a/README b/README index df6d397..18738e8 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Temp - Temporarily change the value of a variable. VERSION - Version 0.02 + Version 0.03 SYNOPSIS use Variable::Temp 'temp'; diff --git a/lib/Variable/Temp.pm b/lib/Variable/Temp.pm index 7477711..2caba11 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.02 +Version 0.03 =cut our $VERSION; BEGIN { - $VERSION = '0.02'; + $VERSION = '0.03'; } =head1 SYNOPSIS