From: Vincent Pit Date: Thu, 4 Sep 2008 20:06:32 +0000 (+0200) Subject: This is 0.03 X-Git-Tag: v0.03^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fsubs-auto.git;a=commitdiff_plain;h=0f17e772017f31694cc38cb6425922921a49d750 This is 0.03 --- diff --git a/Changes b/Changes index 6533ea2..827929e 100644 --- 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. diff --git a/META.yml b/META.yml index aa1787b..cc0f3f1 100644 --- 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 9d301bd..b96f000 100644 --- 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 diff --git a/lib/subs/auto.pm b/lib/subs/auto.pm index d93706a..3a38497 100644 --- a/lib/subs/auto.pm +++ b/lib/subs/auto.pm @@ -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