]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commitdiff
This is 0.15 v0.15
authorVincent Pit <vince@profvince.com>
Wed, 24 Aug 2011 14:16:46 +0000 (16:16 +0200)
committerVincent Pit <vince@profvince.com>
Wed, 24 Aug 2011 14:16:46 +0000 (16:16 +0200)
Changes
META.json
META.yml
README
lib/Scope/Upper.pm

diff --git a/Changes b/Changes
index cdcf75b32e7992bbc28c92c3287d63e4a681b7e6..401dc7d4faf937d0aea5ec5b4f34c0187c2df4ac 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Scope-Upper
 
+0.15    2011-08-24 14:20 UTC
+        + Fix : Localizing subroutines in an higher scope will now correctly
+                update the method cache.
+
 0.14    2011-02-27 00:00 UTC
         + Fix : [RT #64997] : Compatibility with perl 5.13.10.
                 Thanks Dave Mitchell for the notice.
index debd418daf777d9b2a9c045fa82da9b16f845f0b..2aaa7aa971c127af90aac5b46552c24116b8303c 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.58, CPAN::Meta::Converter version 2.110930001",
+   "generated_by" : "ExtUtils::MakeMaker version 6.59, CPAN::Meta::Converter version 2.112150",
    "license" : [
       "perl_5"
    ],
@@ -57,5 +57,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FScope-Upper.git"
       }
    },
-   "version" : "0.14"
+   "version" : "0.15"
 }
index a05fa973d6a99de21073ce35fd590a745dd43240..55e7233777f84f55640e118bb18fd6e37713e0f4 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,36 +1,35 @@
---- #YAML:1.0
-name:               Scope-Upper
-version:            0.14
-abstract:           Act on upper scopes.
+---
+abstract: 'Act on upper scopes.'
 author:
-    - Vincent Pit <perl@profvince.com>
-license:            perl
-distribution_type:  module
-configure_requires:
-    Config:               0
-    ExtUtils::MakeMaker:  0
+  - 'Vincent Pit <perl@profvince.com>'
 build_requires:
-    base:                 0
-    Exporter:             0
-    ExtUtils::MakeMaker:  0
-    Test::More:           0
-    XSLoader:             0
+  Exporter: 0
+  ExtUtils::MakeMaker: 0
+  Test::More: 0
+  XSLoader: 0
+  base: 0
+configure_requires:
+  Config: 0
+  ExtUtils::MakeMaker: 0
+dynamic_config: 1
+generated_by: 'ExtUtils::MakeMaker version 6.59, CPAN::Meta::Converter version 2.112150'
+license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: Scope-Upper
+no_index:
+  directory:
+    - t
+    - inc
 requires:
-    base:      0
-    Exporter:  0
-    perl:      5.006
-    XSLoader:  0
+  Exporter: 0
+  XSLoader: 0
+  base: 0
+  perl: 5.006
 resources:
-    bugtracker:  http://rt.cpan.org/NoAuth/ReportBug.html?Queue=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
-no_index:
-    directory:
-        - t
-        - inc
-generated_by:       ExtUtils::MakeMaker version 6.56
-meta-spec:
-    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
-    version:  1.4
-dynamic_config:     1
+  bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=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.15
diff --git a/README b/README
index b917cb2595fdcd281dc408a24ab91126dca47853..54b68ffbfde8a517d4c10e1eac61534fcd320d32 100644 (file)
--- a/README
+++ b/README
@@ -2,14 +2,14 @@ NAME
     Scope::Upper - Act on upper scopes.
 
 VERSION
-    Version 0.14
+    Version 0.15
 
 SYNOPSIS
     "reap", "localize", "localize_elem", "localize_delete" and "WORDS" :
 
         package Scope;
 
-        use Scope::Upper qw/reap localize localize_elem localize_delete :words/;
+        use Scope::Upper qw<reap localize localize_elem localize_delete :words>;
 
         sub new {
          my ($class, $name) = @_;
@@ -72,7 +72,7 @@ SYNOPSIS
 
         package Try;
 
-        use Scope::Upper qw/unwind want_at :words/;
+        use Scope::Upper qw<unwind want_at :words>;
 
         sub try (&) {
          my @result = shift->();
@@ -84,14 +84,14 @@ SYNOPSIS
 
         sub zap {
          try {
-          my @things = qw/a b c/;
+          my @things = qw<a b c>;
           return @things; # returns to try() and then outside zap()
           # not reached
          };
          # not reached
         }
 
-        my @stuff = zap(); # @stuff contains qw/a b c/
+        my @stuff = zap(); # @stuff contains qw<a b c>
         my $stuff = zap(); # $stuff contains 3
 
 DESCRIPTION
index 63ca3bf77245e994384b12bec989e4d2a497eda0..920274050044846fa7f46002fbd66c40e290fddc 100644 (file)
@@ -9,13 +9,13 @@ Scope::Upper - Act on upper scopes.
 
 =head1 VERSION
 
-Version 0.14
+Version 0.15
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.14';
+ $VERSION = '0.15';
 }
 
 =head1 SYNOPSIS