]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commitdiff
This is 0.32 v0.32
authorVincent Pit <vpit@cpan.org>
Mon, 8 Jul 2019 12:49:08 +0000 (14:49 +0200)
committerVincent Pit <vpit@cpan.org>
Mon, 8 Jul 2019 12:49:08 +0000 (14:49 +0200)
Changes
META.json
META.yml
README
lib/Scope/Upper.pm

diff --git a/Changes b/Changes
index 70db4c5694ad4a131e04b1aac670d8866ab060b1..e891e8eb9f8190e4f050ec79cbc8b2b4c806cbd3 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Scope-Upper
 
+0.32    2019-07-08 12:50 UTC
+        + Fix : [RT #129539] : fails with v5.27.3 and later with DEBUGGING
+                The module has been amended to accomodate with a change of
+                behaviour of a core macro.
+        + Upd : Contact info.
+
 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.
index 3c89d182b6c4240d20388191c8499328d87c0e87..502434b8b2b240f64d127e3698a6613de44d8478 100644 (file)
--- a/META.json
+++ b/META.json
@@ -1,7 +1,7 @@
 {
    "abstract" : "Act on upper scopes.",
    "author" : [
-      "Vincent Pit <perl@profvince.com>"
+      "Vincent Pit <vpit@cpan.org>"
    ],
    "dynamic_config" : 1,
    "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010",
@@ -56,9 +56,9 @@
          "http://dev.perl.org/licenses/"
       ],
       "repository" : {
-         "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FScope-Upper.git"
+         "url" : "http://git.vpit.fr/?p=perl%2Fmodules%2FScope-Upper.git"
       }
    },
-   "version" : "0.31",
-   "x_serialization_backend" : "JSON::PP version 2.97001"
+   "version" : "0.32",
+   "x_serialization_backend" : "JSON::PP version 4.02"
 }
index 9fea1387d1cec6eb4c84c8f61a95b89f4b5a57c1..c8d2c851e86d35e7e38eb1678a49833235561dd4 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,7 +1,7 @@
 ---
 abstract: 'Act on upper scopes.'
 author:
-  - 'Vincent Pit <perl@profvince.com>'
+  - 'Vincent Pit <vpit@cpan.org>'
 build_requires:
   Config: '0'
   Exporter: '0'
@@ -33,6 +33,6 @@ 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.31'
+  repository: http://git.vpit.fr/?p=perl%2Fmodules%2FScope-Upper.git
+version: '0.32'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index 94fbc2a6fde1cab8123b2a6cbf6a69bbb7c0616b..15bb1ec4605ba4544036305244a377a8aa8cc345 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Scope::Upper - Act on upper scopes.
 
 VERSION
-    Version 0.31
+    Version 0.32
 
 SYNOPSIS
     "reap", "localize", "localize_elem", "localize_delete" and "WORDS" :
@@ -797,7 +797,7 @@ SEE ALSO
     Scope::Escape.
 
 AUTHOR
-    Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
+    Vincent Pit "<vpit at cpan.org>".
 
     You can contact me by mail or on "irc.perl.org" (vincent).
 
@@ -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,2018 Vincent
-    Pit, all rights reserved.
+    Copyright 2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019
+    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 b114f2f0130e6faa46309a6d41c0e6260cd1888c..690aa5b231874475783e624de7e187e488d52305 100644 (file)
@@ -11,13 +11,13 @@ Scope::Upper - Act on upper scopes.
 
 =head1 VERSION
 
-Version 0.31
+Version 0.32
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.31';
+ $VERSION = '0.32';
 }
 
 =head1 SYNOPSIS