From: Vincent Pit Date: Thu, 5 Sep 2013 16:45:02 +0000 (+0200) Subject: This is 0.31 X-Git-Tag: v0.31 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=refs%2Ftags%2Fv0.31 This is 0.31 --- diff --git a/Changes b/Changes index 6daf837..32e9949 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Revision history for indirect +0.31 2013-09-05 16:45 UTC + + Fix : [RT #88428] : no indirect in eval can trigger for direct calls + on __PACKAGE__ + Thanks Graham Knop for reporting. + + Tst : Author tests are no longer bundled with this distribution. + They are only made available to authors in the git repository. + 0.30 2013-05-16 15:55 UTC + Fix : [RT #83806] : false positives with Devel::Declare [RT #83839] : false positive using ? : syntax diff --git a/META.json b/META.json index 9d9291d..61e5408 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.130880", + "generated_by" : "ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140", "license" : [ "perl_5" ], @@ -56,5 +56,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git" } }, - "version" : "0.30" + "version" : "0.31" } diff --git a/META.yml b/META.yml index 12e88e6..4251fca 100644 --- a/META.yml +++ b/META.yml @@ -12,7 +12,7 @@ configure_requires: Config: 0 ExtUtils::MakeMaker: 0 dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.130880' +generated_by: 'ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -31,4 +31,4 @@ resources: 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.30 +version: 0.31 diff --git a/README b/README index 3807d3b..0dd92ad 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME indirect - Lexically warn about using the indirect method call syntax. VERSION - Version 0.30 + Version 0.31 SYNOPSIS In a script : @@ -179,7 +179,7 @@ DEPENDENCIES A C compiler. This module may happen to build with a C++ compiler as well, but don't rely on it, as no guarantee is made in this regard. - Carp (standard since perl 5), XSLoader (since perl 5.006). + Carp (standard since perl 5), XSLoader (since perl 5.6.0). AUTHOR Vincent Pit, "", . diff --git a/lib/indirect.pm b/lib/indirect.pm index 8cbb750..d736868 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.30 +Version 0.31 =cut our $VERSION; BEGIN { - $VERSION = '0.30'; + $VERSION = '0.31'; } =head1 SYNOPSIS