]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.15 v0.15
authorVincent Pit <vince@profvince.com>
Wed, 8 Jul 2009 22:54:51 +0000 (00:54 +0200)
committerVincent Pit <vince@profvince.com>
Wed, 8 Jul 2009 22:54:51 +0000 (00:54 +0200)
Changes
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index fdfa4fcd01e67f953adb033df5df09a4f2b66e9d..5fdbf5eeb92e381ee108247876f895b4a1f2bf04 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for indirect
 
 Revision history for indirect
 
+0.15    2009-07-08 22:55 UTC
+        + Fix : Invalid constructs with the same method and package name were
+                not reported.
+        + Fix : The error line number used to point to the end of the expression
+                instead of its beginning.
+
 0.14    2009-06-04 21:55 UTC
         + Fix : Prevent bogus invalid syntaxes caused by reallocated memory
                 chunks. Thanks Andrew Main for reporting with a reproducible
 0.14    2009-06-04 21:55 UTC
         + Fix : Prevent bogus invalid syntaxes caused by reallocated memory
                 chunks. Thanks Andrew Main for reporting with a reproducible
index 649ffb009c1bf59eb5f7093a5783d95e6c706408..d41974a66e84733584308f1b7fff67e6ee8f0e23 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               indirect
 --- #YAML:1.0
 name:               indirect
-version:            0.14
+version:            0.15
 abstract:           Lexically warn about using the indirect object syntax.
 author:
     - Vincent Pit <perl@profvince.com>
 abstract:           Lexically warn about using the indirect object syntax.
 author:
     - Vincent Pit <perl@profvince.com>
@@ -23,7 +23,7 @@ no_index:
     directory:
         - t
         - inc
     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
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
diff --git a/README b/README
index 29e4f47580db0dada5efad785a2f15e77ca98493..efc7130ba9c2bf37cc91fa642f84fcc5852ff653 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect object syntax.
 
 VERSION
     indirect - Lexically warn about using the indirect object syntax.
 
 VERSION
-    Version 0.14
+    Version 0.15
 
 SYNOPSIS
         # In a script
 
 SYNOPSIS
         # In a script
@@ -12,8 +12,8 @@ SYNOPSIS
          use indirect;
          my $y = new Pear; # ok
          {
          use indirect;
          my $y = new Pear; # ok
          {
-          no indirect hook => sub { die "You really wanted $_[0]\->$_[1]" };
-          my $z = new Pineapple 'fresh'; # croaks 'You really wanted Pineapple->new'
+          no indirect hook => sub { die "You really wanted $_[0]\->$_[1] at $_[2]:$_[3]" };
+          my $z = new Pineapple 'fresh'; # croaks 'You really wanted Pineapple->new at blurp.pm:13'
          }
         }
         no indirect ':fatal';
          }
         }
         no indirect ':fatal';
@@ -60,7 +60,8 @@ METHODS
 
 CONSTANTS
   "I_THREADSAFE"
 
 CONSTANTS
   "I_THREADSAFE"
-    True iff the module could have been built when thread-safety features.
+    True iff the module could have been built with thread-safety features
+    enabled.
 
 CAVEATS
     The implementation was tweaked to work around several limitations of
 
 CAVEATS
     The implementation was tweaked to work around several limitations of
index fe39bd9123fa4b3f977b887e9ee9d86632998db8..63df3d8e919489e3a196a1a1a738b37997ebf978 100644 (file)
@@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect object syntax.
 
 =head1 VERSION
 
 
 =head1 VERSION
 
-Version 0.14
+Version 0.15
 
 =cut
 
 our $VERSION;
 BEGIN {
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.14';
+ $VERSION = '0.15';
 }
 
 =head1 SYNOPSIS
 }
 
 =head1 SYNOPSIS