]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.06 v0.06
authorVincent Pit <vince@profvince.com>
Sat, 11 Oct 2008 16:45:53 +0000 (18:45 +0200)
committerVincent Pit <vince@profvince.com>
Sat, 11 Oct 2008 16:45:53 +0000 (18:45 +0200)
Changes
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index 0dcda772a856d66f72a4d7bac95ddac1e70a9934..7c480b7eafb22b76253b776f094c9ce727991141 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for indirect
 
 Revision history for indirect
 
+0.06    2008-10-11 16:45 UTC
+        + Doc : Nits.
+        + Tst : Test "no indirect 'anything'", "foo Class->bar", and indirect
+                uses of exec() and system().
+
 0.05    2008-10-02 14:40 UTC
         + Chg : Now the old check function is always called before storing an op
                 into the map.
 0.05    2008-10-02 14:40 UTC
         + Chg : Now the old check function is always called before storing an op
                 into the map.
index a7b10c199dc5d4e3d30693c14bbc41ce99dc1581..bf9a3a86559cf2e69d09c198e0ef750afe8a559e 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                indirect
 --- #YAML:1.0
 name:                indirect
-version:             0.05
+version:             0.06
 abstract:            Lexically warn about using the indirect object syntax.
 license:             perl
 author:              
 abstract:            Lexically warn about using the indirect object syntax.
 license:             perl
 author:              
diff --git a/README b/README
index 1aaaac98c97c7aaffb4e1bf1b5ba0a36ca26b161..8314442088b644472daec1bd00c0e627a978ebb8 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.05
+    Version 0.06
 
 SYNOPSIS
         no indirect;
 
 SYNOPSIS
         no indirect;
@@ -15,12 +15,12 @@ SYNOPSIS
         if (defied $foo) { ... } # croaks, note the typo
 
 DESCRIPTION
         if (defied $foo) { ... } # croaks, note the typo
 
 DESCRIPTION
-    When enabled (or disabled as some may prefer, since you actually turn it
-    on by calling "no indirect"), this pragma warns about indirect object
-    syntax constructs that may have slipped into your code. This syntax is
-    now considered harmful, since its parsing has many quirks and its use is
-    error prone (when "sub" isn't defined, "sub $x" is actually interpreted
-    as "$x->sub").
+    When enabled (or disabled as some may prefer to say, since you actually
+    turn it on by calling "no indirect"), this pragma warns about indirect
+    object syntax constructs that may have slipped into your code. This
+    syntax is now considered harmful, since its parsing has many quirks and
+    its use is error prone (when "sub" isn't defined, "sub $x" is actually
+    interpreted as "$x->sub").
 
     It currently does not warn when the object is enclosed between braces
     (like "meth { $obj } @args") or for core functions ("print" or "say").
 
     It currently does not warn when the object is enclosed between braces
     (like "meth { $obj } @args") or for core functions ("print" or "say").
@@ -31,7 +31,7 @@ DESCRIPTION
 
 METHODS
   "unimport @opts"
 
 METHODS
   "unimport @opts"
-    Magically called when "no indirect @args" is encountered. Turns the
+    Magically called when "no indirect @opts" is encountered. Turns the
     module on. If @opts contains ':fatal', the module will croak on the
     first indirect syntax met.
 
     module on. If @opts contains ':fatal', the module will croak on the
     first indirect syntax met.
 
@@ -46,8 +46,7 @@ DEPENDENCIES
 AUTHOR
     Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
 
 AUTHOR
     Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
 
-    You can contact me by mail or on #perl @ FreeNode (vincent or
-    Prof_Vince).
+    You can contact me by mail or on "irc.perl.org" (vincent).
 
 BUGS
     Please report any bugs or feature requests to "bug-indirect at
 
 BUGS
     Please report any bugs or feature requests to "bug-indirect at
index a5bd1efb9ce905196e06015f7097b6d26211a73d..e7347813c5a87256f5c5250857b7ca8bcc22601c 100644 (file)
@@ -9,13 +9,13 @@ indirect - Lexically warn about using the indirect object syntax.
 
 =head1 VERSION
 
 
 =head1 VERSION
 
-Version 0.05
+Version 0.06
 
 =cut
 
 our $VERSION;
 BEGIN {
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.05';
+ $VERSION = '0.06';
 }
 
 =head1 SYNOPSIS
 }
 
 =head1 SYNOPSIS