]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.08 v0.08
authorVincent Pit <vince@profvince.com>
Wed, 22 Oct 2008 14:42:22 +0000 (16:42 +0200)
committerVincent Pit <vince@profvince.com>
Wed, 22 Oct 2008 14:42:22 +0000 (16:42 +0200)
Changes
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index 7ccb80396b3ec5a90bde44683b589acd6d3317ce..94b0920acb8c66b9b075b7e08165b02b2b1fba4a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for indirect
 
+0.08    2008-10-22 14:45 UTC
+        + Fix : A rare edge case for package whose names are prefix of 'main'.
+        + Tst : Test $$ as variable and state variables.
+
 0.07_03 2008-10-17 20:10 UTC
         + Add : Support and tests for variables with spaces after the sigil.
         + Upd : META.yml spec updated to 1.4.
index 9af5452d0a683ff19d9971f7ded7118fa4afa478..cae9804493b72d0c516632cb2d446b7689052bf4 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               indirect
-version:            0.07_03
+version:            0.08
 abstract:           Lexically warn about using the indirect object syntax.
 author:
     - Vincent Pit <perl@profvince.com>
diff --git a/README b/README
index c32098131ff72b0914a727ae2a708820346b34b4..d880a9cc19d6c4db11ae6e2a9840f443518b57ab 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect object syntax.
 
 VERSION
-    Version 0.07_03
+    Version 0.08
 
 SYNOPSIS
         no indirect;
@@ -43,6 +43,11 @@ DEPENDENCIES
 
     XSLoader (standard since perl 5.006).
 
+CAVEATS
+    "meth $obj" (no semicolon) at the end of a file won't be seen as an
+    indirect object syntax, although it will as soon as there is another
+    token before the end (as in "meth $obj;" or "meth $obj 1").
+
 AUTHOR
     Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
 
index b1278f8e5093b9f270af9f455dcdcbc7f79a0bd0..ebfb264cfa5144a3da8eb8d76d8438f41724ba68 100644 (file)
@@ -9,13 +9,13 @@ indirect - Lexically warn about using the indirect object syntax.
 
 =head1 VERSION
 
-Version 0.07_03
+Version 0.08
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.07_03';
+ $VERSION = '0.08';
 }
 
 =head1 SYNOPSIS