From: Vincent Pit Date: Thu, 16 May 2013 15:57:49 +0000 (+0200) Subject: This is 0.30 X-Git-Tag: v0.30^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=1dba01eb690ca7a41744d6756ae257a9aa44586d This is 0.30 --- diff --git a/Changes b/Changes index 6c6cbe8..6daf837 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,14 @@ Revision history for indirect +0.30 2013-05-16 15:55 UTC + + Fix : [RT #83806] : false positives with Devel::Declare + [RT #83839] : false positive using ? : syntax + Thanks Andrew Main for the patch. + However, please note that the reason this patch seems to fix + thinks has not been explained. + + Fix : [RT #84649] : incorrect RT link in metadata + Thanks Karen Etheridge for reporting. + 0.29 2013-03-05 01:30 UTC + Fix : [RT #83659] : false positives Proper method calls in string-like environments (like diff --git a/META.json b/META.json index b69b53c..9d9291d 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.120921", + "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.130880", "license" : [ "perl_5" ], @@ -46,7 +46,7 @@ "release_status" : "stable", "resources" : { "bugtracker" : { - "web" : "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=indirect" + "web" : "http://rt.cpan.org/Dist/Display.html?Name=indirect" }, "homepage" : "http://search.cpan.org/dist/indirect/", "license" : [ @@ -56,5 +56,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git" } }, - "version" : "0.29" + "version" : "0.30" } diff --git a/META.yml b/META.yml index db5e5cc..12e88e6 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.64, CPAN::Meta::Converter version 2.120921' +generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.130880' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -27,8 +27,8 @@ requires: XSLoader: 0 perl: 5.008001 resources: - bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=indirect + 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.29 +version: 0.30 diff --git a/README b/README index f6b1176..3807d3b 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME indirect - Lexically warn about using the indirect method call syntax. VERSION - Version 0.29 + Version 0.30 SYNOPSIS In a script : diff --git a/lib/indirect.pm b/lib/indirect.pm index 20827b4..27747bf 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.29 +Version 0.30 =cut our $VERSION; BEGIN { - $VERSION = '0.29'; + $VERSION = '0.30'; } =head1 SYNOPSIS