From: Vincent Pit Date: Thu, 12 Mar 2015 23:42:04 +0000 (-0300) Subject: This is 0.26 X-Git-Tag: v0.26^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FScope-Upper.git;a=commitdiff_plain;h=68a5aefb3004e65311710b45280e4ec453aa540e This is 0.26 --- diff --git a/Changes b/Changes index b8ad131..e0152a2 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Scope-Upper +0.26 2015-03-12 23:30 UTC + + Fix : [RT #100264] : Don't use CvPADLIST on XSUBs + Thanks Father Chrysostomos for reporting and contributing a + patch. + + Fix : Be really compatible with the optional OP_PARENT feature. + 0.25 2014-09-21 17:10 UTC + Add : Support for the PERL_OP_PARENT optional feature introduced in perl 5.21.2. diff --git a/META.json b/META.json index 22c7721..5409d63 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.142060", + "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001", "license" : [ "perl_5" ], @@ -58,5 +58,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FScope-Upper.git" } }, - "version" : "0.25" + "version" : "0.26" } diff --git a/META.yml b/META.yml index 6a7d5ab..403f7ae 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.98, CPAN::Meta::Converter version 2.142060' +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 @@ -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.25' +version: '0.26' diff --git a/README b/README index e4518c4..02b39f2 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Scope::Upper - Act on upper scopes. VERSION - Version 0.25 + Version 0.26 SYNOPSIS "reap", "localize", "localize_elem", "localize_delete" and "WORDS" : @@ -785,8 +785,8 @@ ACKNOWLEDGEMENTS Thanks to Shawn M. Moore for motivation. COPYRIGHT & LICENSE - Copyright 2008,2009,2010,2011,2012,2013,2014 Vincent Pit, all rights - reserved. + Copyright 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 under the same terms as Perl itself. diff --git a/lib/Scope/Upper.pm b/lib/Scope/Upper.pm index 025fccf..04f26fd 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.25 +Version 0.26 =cut our $VERSION; BEGIN { - $VERSION = '0.25'; + $VERSION = '0.26'; } =head1 SYNOPSIS