From: Vincent Pit Date: Thu, 2 Oct 2008 20:48:04 +0000 (+0200) Subject: This is 0.04 X-Git-Tag: v0.04^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fsubs-auto.git;a=commitdiff_plain;h=080d2064dac2793b10dc7d37e42d4573932a2dc6 This is 0.04 --- diff --git a/Changes b/Changes index 827929e..f55ad2e 100644 --- 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. diff --git a/META.yml b/META.yml index cc0f3f1..d22fc4d 100644 --- 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 b96f000..58b2590 100644 --- 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. diff --git a/lib/subs/auto.pm b/lib/subs/auto.pm index d166c20..a630a00 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.03 +Version 0.04 =cut -our $VERSION = '0.03'; +our $VERSION = '0.04'; =head1 SYNOPSIS