From: Vincent Pit Date: Thu, 9 Jul 2009 09:03:25 +0000 (+0200) Subject: This is 0.03 X-Git-Tag: v0.03 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FPerl-Critic-Policy-Dynamic-NoIndirect.git;a=commitdiff_plain;h=refs%2Ftags%2Fv0.03 This is 0.03 --- diff --git a/Changes b/Changes index 324a156..eeded93 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Perl-Critic-Policy-Dynamic-NoIndirect +0.03 2009-07-09 09:05 UTC + + Add : A sample script. + + Fix : Multiple violations with the same method on the same line were + not reported. + + Upd : Bump indirect dependency to 0.15. + 0.02 2009-07-07 16:25 UTC + Fix : Incomplete MANIFEST. diff --git a/META.yml b/META.yml index 45c4ae3..6bc3543 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Perl-Critic-Policy-Dynamic-NoIndirect -version: 0.02 +version: 0.03 abstract: Perl::Critic policy against indirect method calls. author: - Vincent Pit @@ -15,7 +15,7 @@ build_requires: requires: base: 0 Carp: 0 - indirect: 0.14 + indirect: 0.15 perl: 5.008 Perl::Critic::DynamicPolicy: 0 Perl::Critic::Utils: 0 @@ -28,7 +28,7 @@ no_index: directory: - t - inc -generated_by: ExtUtils::MakeMaker version 6.52 +generated_by: ExtUtils::MakeMaker version 6.54 meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.4 diff --git a/README b/README index 407fdb8..86417b8 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ NAME indirect method calls. VERSION - Version 0.02 + Version 0.03 DESCRIPTION This Perl::Critic dynamic policy reports any use of indirect object diff --git a/lib/Perl/Critic/Policy/Dynamic/NoIndirect.pm b/lib/Perl/Critic/Policy/Dynamic/NoIndirect.pm index 5236bda..11b9b5c 100644 --- a/lib/Perl/Critic/Policy/Dynamic/NoIndirect.pm +++ b/lib/Perl/Critic/Policy/Dynamic/NoIndirect.pm @@ -11,11 +11,11 @@ Perl::Critic::Policy::Dynamic::NoIndirect - Perl::Critic policy against indirect =head1 VERSION -Version 0.02 +Version 0.03 =cut -our $VERSION = '0.02'; +our $VERSION = '0.03'; =head1 DESCRIPTION