]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.39 master v0.39
authorVincent Pit <vpit@cpan.org>
Mon, 8 Jul 2019 12:02:11 +0000 (14:02 +0200)
committerVincent Pit <vpit@cpan.org>
Mon, 8 Jul 2019 12:02:11 +0000 (14:02 +0200)
Changes
META.json
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index 6f9915f9f368b0af5a8c3af7ce24b4c381bf0a4a..3ea38e877eb30cbb83fbe3aed91cf1773e844d8a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for indirect
 
+0.39    2019-07-08 12:00 UTC
+        + Fix : [RT #127118] : Fails on perl >= v5.28.0 with -DDEBUGGING
+                The module has been amended to accomodate with a change of
+                behaviour of a core macro.
+        + Upd : Contact info.
+
 0.38    2017-11-04 15:40 UTC
         + Fix : [RT #123374] : Compatibility with CV-in-stash optimisation
                 Thanks Father Chrysostomos for reporting and contributing a
index 7933f7ceb39d29cc691ac41cd9a3b42f5a13c98b..9092e29d9524f4b02bb665b78ac64462c446ae6e 100644 (file)
--- a/META.json
+++ b/META.json
@@ -1,10 +1,10 @@
 {
    "abstract" : "Lexically warn about using the indirect method call syntax.",
    "author" : [
-      "Vincent Pit <perl@profvince.com>"
+      "Vincent Pit <vpit@cpan.org>"
    ],
    "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"
    ],
@@ -60,9 +60,9 @@
          "http://dev.perl.org/licenses/"
       ],
       "repository" : {
-         "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git"
+         "url" : "http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git"
       }
    },
-   "version" : "0.38",
-   "x_serialization_backend" : "JSON::PP version 2.94"
+   "version" : "0.39",
+   "x_serialization_backend" : "JSON::PP version 4.02"
 }
index 9a3ce67994bec0ebd469f5f552e73845caae16a3..f2f9fd1201baa17847d9c92bcc71ab57cebe3526 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,7 +1,7 @@
 ---
 abstract: 'Lexically warn about using the indirect method call syntax.'
 author:
-  - 'Vincent Pit <perl@profvince.com>'
+  - 'Vincent Pit <vpit@cpan.org>'
 build_requires:
   Carp: '0'
   Config: '0'
@@ -19,7 +19,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
@@ -37,6 +37,6 @@ resources:
   bugtracker: http://rt.cpan.org/Dist/Display.html?Name=indirect
   homepage: http://search.cpan.org/dist/indirect/
   license: http://dev.perl.org/licenses/
-  repository: http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git
-version: '0.38'
+  repository: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git
+version: '0.39'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index 5370498734f1d4572221fa44ceb010c3e9948742..b1fd6d01b01b6da2380a372c3eaca857aa4a3fcd 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect method call syntax.
 
 VERSION
-    Version 0.38
+    Version 0.39
 
 SYNOPSIS
     In a script :
@@ -199,7 +199,7 @@ DEPENDENCIES
     Carp (standard since perl 5), XSLoader (since perl 5.6.0).
 
 AUTHOR
-    Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
+    Vincent Pit "<vpit@cpan.org>".
 
     You can contact me by mail or on "irc.perl.org" (vincent).
 
@@ -222,8 +222,8 @@ ACKNOWLEDGEMENTS
     reporting issues.
 
 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,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 295119fa41cde30825c0cc1f92f32bd33316b322..949daaddbfc6bed3300cab57e2614bc46f8fcbd1 100644 (file)
@@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect method call syntax.
 
 =head1 VERSION
 
-Version 0.38
+Version 0.39
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.38';
+ $VERSION = '0.39';
 }
 
 =head1 SYNOPSIS