]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commitdiff
This is 0.34 master v0.34
authorVincent Pit <vpit@cpan.org>
Sun, 26 Mar 2023 16:00:16 +0000 (18:00 +0200)
committerVincent Pit <vpit@cpan.org>
Sun, 26 Mar 2023 16:00:16 +0000 (18:00 +0200)
Changes
META.json
META.yml
README
lib/Scope/Upper.pm

diff --git a/Changes b/Changes
index cd12fdd5e2a8c232d50d9e15dc702bddc6fd54b1..3ebf9d5dd1692480dce9dcec75ef663e8397d4ab 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,18 @@
 Revision history for Scope-Upper
 
+0.34    2023-03-26 16:00 UTC
+        + Add : Contributing guidelines are now listed in the new
+                CONTRIBUTING file.
+        + Fix : [RT #146897] Scope::Upper does not know about RCPV
+                cop_warnings, and does not know that given is deprecated.
+                "given" related warnings were silenced, and the new RCPV
+                interface is now used.
+                Thanks Yves Orton for reporting and contributing a fix.
+        + Fix : Assertion failures triggering on perl version 5.37.10 and
+                higher with DEBUGGING enabled.
+        + Fix : t/64-uplevel-caller.t has been taught about the new call frame
+                numbering convention.
+
 0.33    2021-12-20 20:30 UTC
         + Fix : [RT #114816] resources/remote/url points to web interface
                 META files now follow version 2.0 of the CPAN META spec.
index f3ea0a89b7848c383283231150fad1eae0cd101d..f842869738387485c959376396ef330efffdc020 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
       "Vincent Pit <vpit@cpan.org>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.66, CPAN::Meta::Converter version 2.150010",
    "license" : [
       "perl_5"
    ],
@@ -61,6 +61,6 @@
          "web" : "http://git.vpit.fr/?p=perl%2Fmodules%2FScope-Upper.git"
       }
    },
-   "version" : "0.33",
-   "x_serialization_backend" : "JSON::PP version 4.06"
+   "version" : "0.34",
+   "x_serialization_backend" : "JSON::PP version 4.16"
 }
index ac67f34efa3f7adc59ede36575994b9ed5118cd1..e67cc7049246f3d1025a8d1efb2f9ca17fe5b5c9 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -13,7 +13,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.66, CPAN::Meta::Converter version 2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -33,5 +33,5 @@ resources:
   homepage: http://search.cpan.org/dist/Scope-Upper/
   license: http://dev.perl.org/licenses/
   repository: http://git.vpit.fr/perl/modules/Scope-Upper.git/
-version: '0.33'
+version: '0.34'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index bb108eb85c242b1ca6fb2a82bd224c54c473eaab..1f7b09e86d7b75ee39dc27864831d88f2d89eecd 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Scope::Upper - Act on upper scopes.
 
 VERSION
-    Version 0.33
+    Version 0.34
 
 SYNOPSIS
     "reap", "localize", "localize_elem", "localize_delete" and "WORDS" :
@@ -824,8 +824,8 @@ ACKNOWLEDGEMENTS
 
 COPYRIGHT & LICENSE
     Copyright
-    2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2021 Vincent
-    Pit, all rights reserved.
+    2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2021,2023
+    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 4fdb39bb13157da13aa88704836fd817d6487c22..49d2aa4a5bef9c84ba51aeee9af046ab3dfa2bb3 100644 (file)
@@ -11,13 +11,13 @@ Scope::Upper - Act on upper scopes.
 
 =head1 VERSION
 
-Version 0.33
+Version 0.34
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.33';
+ $VERSION = '0.34';
 }
 
 =head1 SYNOPSIS