From: Vincent Pit Date: Thu, 2 Oct 2008 14:39:32 +0000 (+0200) Subject: This is 0.05 X-Git-Tag: v0.05^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=09f173c3bc4db6b397e98072a8c2cefc882f9e5d This is 0.05 --- diff --git a/Changes b/Changes index 7992267..0dcda77 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for indirect +0.05 2008-10-02 14:40 UTC + + Chg : Now the old check function is always called before storing an op + into the map. + + Fix : Misc code and docs refinements. + 0.04 2008-08-30 19:00 UTC + Fix : Clean up the op->src hash when we're done with an entersub. + Tst : No longer fork for testing. IPC::Cmd isn't required anymore. diff --git a/META.yml b/META.yml index 666756f..a7b10c1 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: indirect -version: 0.04 +version: 0.05 abstract: Lexically warn about using the indirect object syntax. license: perl author: diff --git a/README b/README index b273c8a..1aaaac9 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME indirect - Lexically warn about using the indirect object syntax. VERSION - Version 0.04 + Version 0.05 SYNOPSIS no indirect; @@ -27,6 +27,8 @@ DESCRIPTION This may change in the future, or may be added as optional features that would be enabled by passing options to "unimport". + This module is not a source filter. + METHODS "unimport @opts" Magically called when "no indirect @args" is encountered. Turns the diff --git a/lib/indirect.pm b/lib/indirect.pm index 450b025..0413a9d 100644 --- a/lib/indirect.pm +++ b/lib/indirect.pm @@ -9,13 +9,13 @@ indirect - Lexically warn about using the indirect object syntax. =head1 VERSION -Version 0.04 +Version 0.05 =cut our $VERSION; BEGIN { - $VERSION = '0.04'; + $VERSION = '0.05'; } =head1 SYNOPSIS