From: Vincent Pit Date: Sun, 21 Sep 2014 17:10:00 +0000 (+0200) Subject: This is 0.25 X-Git-Tag: v0.25^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FScope-Upper.git;a=commitdiff_plain;h=1b224b7b9cb2d4685c426140e5e67d392aeb1059 This is 0.25 --- diff --git a/Changes b/Changes index d4ed47a..b8ad131 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Scope-Upper +0.25 2014-09-21 17:10 UTC + + Add : Support for the PERL_OP_PARENT optional feature introduced in + perl 5.21.2. + + Fix : Work around an assertion failure in perl 5.21.4. + 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. diff --git a/META.json b/META.json index a32b923..22c7721 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.76, CPAN::Meta::Converter version 2.132510", + "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142060", "license" : [ "perl_5" ], @@ -58,5 +58,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FScope-Upper.git" } }, - "version" : "0.24" + "version" : "0.25" } diff --git a/META.yml b/META.yml index 0d0df3c..6a7d5ab 100644 --- a/META.yml +++ b/META.yml @@ -3,34 +3,34 @@ abstract: 'Act on upper scopes.' author: - 'Vincent Pit ' build_requires: - Config: 0 - Exporter: 0 - ExtUtils::MakeMaker: 0 - Test::More: 0 - XSLoader: 0 - base: 0 + Config: '0' + Exporter: '0' + ExtUtils::MakeMaker: '0' + Test::More: '0' + XSLoader: '0' + base: '0' configure_requires: - Config: 0 - ExtUtils::MakeMaker: 0 + Config: '0' + ExtUtils::MakeMaker: '0' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.76, CPAN::Meta::Converter version 2.132510' +generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142060' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html - version: 1.4 + version: '1.4' name: Scope-Upper no_index: directory: - t - inc requires: - Exporter: 0 - XSLoader: 0 - base: 0 - perl: 5.006001 + Exporter: '0' + XSLoader: '0' + base: '0' + perl: '5.006001' resources: bugtracker: http://rt.cpan.org/Dist/Display.html?Name=Scope-Upper 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.24 +version: '0.25' diff --git a/README b/README index 4844073..e4518c4 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Scope::Upper - Act on upper scopes. VERSION - Version 0.24 + Version 0.25 SYNOPSIS "reap", "localize", "localize_elem", "localize_delete" and "WORDS" : @@ -785,7 +785,7 @@ ACKNOWLEDGEMENTS Thanks to Shawn M. Moore for motivation. COPYRIGHT & LICENSE - Copyright 2008,2009,2010,2011,2012,2013 Vincent Pit, all rights + Copyright 2008,2009,2010,2011,2012,2013,2014 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it diff --git a/lib/Scope/Upper.pm b/lib/Scope/Upper.pm index da124ec..8a160cd 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.24 +Version 0.25 =cut our $VERSION; BEGIN { - $VERSION = '0.24'; + $VERSION = '0.25'; } =head1 SYNOPSIS