]> git.vpit.fr Git - perl/modules/subs-auto.git/commitdiff
This is 0.03 v0.03
authorVincent Pit <vince@profvince.com>
Thu, 4 Sep 2008 20:06:32 +0000 (22:06 +0200)
committerVincent Pit <vince@profvince.com>
Thu, 4 Sep 2008 20:06:32 +0000 (22:06 +0200)
Changes
META.yml
README
lib/subs/auto.pm

diff --git a/Changes b/Changes
index 6533ea24bd632b2fa629e8882f9e3d6358fd3e22..827929e93dbe86fa406a9c2018c1e16632139162 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for subs-auto
 
+0.03    2008-09-05 20:10 UTC
+        + Chg : The hint hash slot used is now 'subs__auto'.
+        + Tst : More of them.
+
 0.02    2008-08-28 14:50 UTC
         + Add : The 'in' parameter.
         + Fix : Add exceptions for __FILE__, __LINE__ and DATA.
index aa1787bf7dd4c8ee43e17a4a40407c462f904098..cc0f3f1db781eb6b4eacdf3b80fedaae811d7c02 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                subs-auto
-version:             0.02
+version:             0.03
 abstract:            Read barewords as subroutine names.
 license:             perl
 author:              
diff --git a/README b/README
index 9d301bd6fb7aa84f7bba1af745d2190994fe9f46..b96f000b2892d09cb5ca948cc0b05ffd0fadc9a9 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     subs::auto - Read barewords as subroutine names.
 
 VERSION
-    Version 0.02
+    Version 0.03
 
 SYNOPSIS
         {
@@ -32,7 +32,11 @@ DESCRIPTION
 
     *   "in => $pkg"
 
-        Specifies on which package the pragma should act. Defaults to the
+        Specifies on which package the pragma should act. Setting $pkg to
+        "Some::Package" allows you to resolve all functions name of the type
+        "Some::Package::func ..." in the current scope. You can use the
+        pragma several times with different package names to allow
+        resolution of all the corresponding barewords. Defaults to the
         current package.
 
 EXPORT
index d93706aa5f632e6e9137f90f5220924ce39426f7..3a38497688c64975639d0c65dd529c858fb37cab 100644 (file)
@@ -16,11 +16,11 @@ subs::auto - Read barewords as subroutine names.
 
 =head1 VERSION
 
-Version 0.02
+Version 0.03
 
 =cut
 
-our $VERSION = '0.02';
+our $VERSION = '0.03';
 
 =head1 SYNOPSIS