]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commitdiff
This is 0.31 v0.31
authorVincent Pit <perl@profvince.com>
Sun, 26 Aug 2018 19:50:59 +0000 (21:50 +0200)
committerVincent Pit <perl@profvince.com>
Sun, 26 Aug 2018 19:50:59 +0000 (21:50 +0200)
Changes
META.json
META.yml
README
lib/Scope/Upper.pm

diff --git a/Changes b/Changes
index 2a645aec998498e06534fb9383b69e18b00a5268..70db4c5694ad4a131e04b1aac670d8866ab060b1 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Scope-Upper
 
+0.31    2018-08-26 19:50 UTC
+        + Fix : [RT #125931] : localized SCALAR doesn't get imported
+                localize '$Foo::x' => $var now properly imports $x into Foo.
+                Thanks Vernon Lyon for reporting.
+
 0.30    2017-11-04 15:55 UTC
         + Fix : [RT #123481] : Compatibility with CV-in-stash optimisation
                 Thanks Father Chrysostomos for reporting and contributing a
index d9781110b2919fe40a18ce88bb9954e6c86b948e..3c89d182b6c4240d20388191c8499328d87c0e87 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 7.3, CPAN::Meta::Converter version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010",
    "license" : [
       "perl_5"
    ],
@@ -59,6 +59,6 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FScope-Upper.git"
       }
    },
-   "version" : "0.30",
-   "x_serialization_backend" : "JSON::PP version 2.94"
+   "version" : "0.31",
+   "x_serialization_backend" : "JSON::PP version 2.97001"
 }
index 97e5fb444b0b901f7ee6ec21d32bf66f2b7a7ee9..9fea1387d1cec6eb4c84c8f61a95b89f4b5a57c1 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -14,7 +14,7 @@ configure_requires:
   Config: '0'
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -34,5 +34,5 @@ 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.30'
+version: '0.31'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index 0c8c61949f274a513ca242f1e2492f3e464ab1ba..94fbc2a6fde1cab8123b2a6cbf6a69bbb7c0616b 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Scope::Upper - Act on upper scopes.
 
 VERSION
-    Version 0.30
+    Version 0.31
 
 SYNOPSIS
     "reap", "localize", "localize_elem", "localize_delete" and "WORDS" :
@@ -823,8 +823,8 @@ ACKNOWLEDGEMENTS
     Thanks to Shawn M. Moore for motivation.
 
 COPYRIGHT & LICENSE
-    Copyright 2008,2009,2010,2011,2012,2013,2014,2015,2016,2017 Vincent Pit,
-    all rights reserved.
+    Copyright 2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018 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.
index 40ea5c50661187f0d544950cffa4366e93d1a568..ce67708c6510f27e5444146a4b708f6902b1d3f6 100644 (file)
@@ -11,13 +11,13 @@ Scope::Upper - Act on upper scopes.
 
 =head1 VERSION
 
-Version 0.30
+Version 0.31
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.30';
+ $VERSION = '0.31';
 }
 
 =head1 SYNOPSIS