From: Vincent Pit Date: Tue, 10 Sep 2013 11:10:35 +0000 (+0200) Subject: This is 0.24 X-Git-Tag: v0.24^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FScope-Upper.git;a=commitdiff_plain;h=5dd48a401229e457106bdc30bb841e9fed0dde7c This is 0.24 --- diff --git a/Changes b/Changes index 866cb90..d4ed47a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Scope-Upper +0.24 2013-09-10 11:10 UTC + + Fix : Lexicals returned with unwind(), yield() and leave() will no + longer be lost on perl 5.19.4 and above. + 0.23 2013-09-02 11:30 UTC This is a maintenance release. The code contains no functional change. Satisfied users of version 0.22 can skip this update. diff --git a/META.json b/META.json index 8f82f29..a32b923 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140", + "generated_by" : "ExtUtils::MakeMaker version 6.76, CPAN::Meta::Converter version 2.132510", "license" : [ "perl_5" ], @@ -58,5 +58,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FScope-Upper.git" } }, - "version" : "0.23" + "version" : "0.24" } diff --git a/META.yml b/META.yml index 89eab88..0d0df3c 100644 --- a/META.yml +++ b/META.yml @@ -13,7 +13,7 @@ configure_requires: Config: 0 ExtUtils::MakeMaker: 0 dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140' +generated_by: 'ExtUtils::MakeMaker version 6.76, CPAN::Meta::Converter version 2.132510' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -33,4 +33,4 @@ resources: homepage: http://search.cpan.org/dist/Scope-Upper/ license: http://dev.perl.org/licenses/ repository: http://git.profvince.com/?p=perl%2Fmodules%2FScope-Upper.git -version: 0.23 +version: 0.24 diff --git a/README b/README index d92c5fd..4844073 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Scope::Upper - Act on upper scopes. VERSION - Version 0.23 + Version 0.24 SYNOPSIS "reap", "localize", "localize_elem", "localize_delete" and "WORDS" : diff --git a/lib/Scope/Upper.pm b/lib/Scope/Upper.pm index 7553492..9f9b70f 100644 --- a/lib/Scope/Upper.pm +++ b/lib/Scope/Upper.pm @@ -11,13 +11,13 @@ Scope::Upper - Act on upper scopes. =head1 VERSION -Version 0.23 +Version 0.24 =cut our $VERSION; BEGIN { - $VERSION = '0.23'; + $VERSION = '0.24'; } =head1 SYNOPSIS