From: Vincent Pit Date: Mon, 8 Jul 2019 12:02:11 +0000 (+0200) Subject: This is 0.39 X-Git-Tag: v0.39^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=2a948bb076eb349b7060dca23a1ee2c9f7353c0d This is 0.39 --- diff --git a/Changes b/Changes index 6f9915f..3ea38e8 100644 --- 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 diff --git a/META.json b/META.json index 7933f7c..9092e29 100644 --- a/META.json +++ b/META.json @@ -1,10 +1,10 @@ { "abstract" : "Lexically warn about using the indirect method call syntax.", "author" : [ - "Vincent Pit " + "Vincent Pit " ], "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" } diff --git a/META.yml b/META.yml index 9a3ce67..f2f9fd1 100644 --- a/META.yml +++ b/META.yml @@ -1,7 +1,7 @@ --- abstract: 'Lexically warn about using the indirect method call syntax.' author: - - 'Vincent Pit ' + - 'Vincent Pit ' 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 5370498..b1fd6d0 100644 --- 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, "", . + Vincent Pit "". 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. diff --git a/lib/indirect.pm b/lib/indirect.pm index 295119f..949daad 100644 --- a/lib/indirect.pm +++ b/lib/indirect.pm @@ -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