]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commitdiff
This is 0.25 v0.25
authorVincent Pit <vince@profvince.com>
Sun, 21 Sep 2014 17:10:00 +0000 (19:10 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 21 Sep 2014 17:10:00 +0000 (19:10 +0200)
Changes
META.json
META.yml
README
lib/Scope/Upper.pm

diff --git a/Changes b/Changes
index d4ed47a0fb67d3d5faa398319f0ab7986845eff6..b8ad1313f65d810adec33020cac46eed1dc66c29 100644 (file)
--- 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.
index a32b923ded758bf27a5e4ae7632af88805f67279..22c77216a7feb77ec26bc7c1aa03848e800289d5 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
       "Vincent Pit <perl@profvince.com>"
    ],
    "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"
 }
index 0d0df3c408875b0faf8535f3dc233f0b643453e3..6a7d5ab62fdbd20293314681bf9f2b627b74d6e5 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -3,34 +3,34 @@ abstract: 'Act on upper scopes.'
 author:
   - 'Vincent Pit <perl@profvince.com>'
 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 4844073727e0d1dbf07695f7ec9a767f7d1bba1e..e4518c40b751f75e0a7b192c7e8a37e99394bf68 100644 (file)
--- 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
index da124ec41c50d26bedd014471275e429fe50b912..8a160cda2887b302c74b0045f5bdd3ce0e8e2299 100644 (file)
@@ -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