]> git.vpit.fr Git - perl/modules/Perl-Critic-Policy-Dynamic-NoIndirect.git/commitdiff
This is 0.03 v0.03
authorVincent Pit <vince@profvince.com>
Thu, 9 Jul 2009 09:03:25 +0000 (11:03 +0200)
committerVincent Pit <vince@profvince.com>
Thu, 9 Jul 2009 09:03:25 +0000 (11:03 +0200)
Changes
META.yml
README
lib/Perl/Critic/Policy/Dynamic/NoIndirect.pm

diff --git a/Changes b/Changes
index 324a1565ceacd3a0bc0d1c3da5fb462c3b12fd99..eeded93c9a589185fc17af0246a4ed29097ad560 100644 (file)
--- 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.
 
index 45c4ae33f93ebcb95caaac2df7e49f7ffcdb2b7c..6bc3543034aacb6ad5e324bba6b1c689aeebd5d9 100644 (file)
--- 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 <perl@profvince.com>
@@ -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 407fdb83d1d7392c90166e453d3c81d6ee70ca04..86417b877a7b469094c788517937b4b6ddd09568 100644 (file)
--- 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
index 5236bda9a6516ef6e048775d6741e1674119c6b8..11b9b5c6fe8ba5bc28f08c3a6d51bcd080d5d784 100644 (file)
@@ -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