]> git.vpit.fr Git - perl/modules/subs-auto.git/commitdiff
This is 0.04 v0.04
authorVincent Pit <vince@profvince.com>
Thu, 2 Oct 2008 20:48:04 +0000 (22:48 +0200)
committerVincent Pit <vince@profvince.com>
Thu, 2 Oct 2008 20:48:04 +0000 (22:48 +0200)
Changes
META.yml
README
lib/subs/auto.pm

diff --git a/Changes b/Changes
index 827929e93dbe86fa406a9c2018c1e16632139162..f55ad2e2a588d830adce6004171d740eeff23345 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for subs-auto
 
+0.04    2008-10-02 20:50 UTC
+        + Doc : Nits.
+        + Tst : Yet more of them.
+
 0.03    2008-09-05 20:10 UTC
         + Chg : The hint hash slot used is now 'subs__auto'.
         + Tst : More of them.
index cc0f3f1db781eb6b4eacdf3b80fedaae811d7c02..d22fc4ddb0c4a8c09ad5e9572ca4f47188bfc9c3 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                subs-auto
-version:             0.03
+version:             0.04
 abstract:            Read barewords as subroutine names.
 license:             perl
 author:              
diff --git a/README b/README
index b96f000b2892d09cb5ca948cc0b05ffd0fadc9a9..58b2590fefaa6d05af1d1d98f3a47da9eaea7783 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     subs::auto - Read barewords as subroutine names.
 
 VERSION
-    Version 0.03
+    Version 0.04
 
 SYNOPSIS
         {
@@ -16,7 +16,7 @@ SYNOPSIS
          foo->meth;       # "'foo'->meth" if you have use'd foo somewhere,
                           #  or "foo()->meth" otherwise
          print foo 'wut'; # print to the filehandle foo if it's actually one,
-                          #  or "foo()->print('wut')" otherwise
+                          #  or "print(foo('wut'))" otherwise
         } # ... but function calls will fail at run-time if you don't
           # actually define foo somewhere
     
@@ -39,6 +39,8 @@ DESCRIPTION
         resolution of all the corresponding barewords. Defaults to the
         current package.
 
+    This module is not a source filter.
+
 EXPORT
     None.
 
index d166c20f168a2f8b2ac1af5d6a982f4fd756f10f..a630a00d9b821875bbec175cc427a2b1f57f5a30 100644 (file)
@@ -16,11 +16,11 @@ subs::auto - Read barewords as subroutine names.
 
 =head1 VERSION
 
-Version 0.03
+Version 0.04
 
 =cut
 
-our $VERSION = '0.03';
+our $VERSION = '0.04';
 
 =head1 SYNOPSIS