From: Vincent Pit Date: Sat, 30 Aug 2008 19:00:24 +0000 (+0200) Subject: This is 0.04 X-Git-Tag: v0.04^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=581758fddf2146d4c5d80e50703bfa80705636d6 This is 0.04 --- diff --git a/Changes b/Changes index 2487e70..7992267 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for indirect +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. + 0.03 2008-08-12 15:25 UTC This release is kindly supported by Copenhagen Hotel Centrum WiFi. + Fix : Tests used not to pass PERL5OPTS to their kids. This lead to diff --git a/META.yml b/META.yml index 72c3c24..666756f 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: indirect -version: 0.03 +version: 0.04 abstract: Lexically warn about using the indirect object syntax. license: perl author: @@ -14,5 +14,4 @@ meta-spec: version: 1.3 build_requires: ExtUtils::MakeMaker: 0 - IPC::Cmd: 0 Test::More: 0 diff --git a/README b/README index b16dba1..b273c8a 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME indirect - Lexically warn about using the indirect object syntax. VERSION - Version 0.03 + Version 0.04 SYNOPSIS no indirect; @@ -41,8 +41,6 @@ DEPENDENCIES XSLoader (standard since perl 5.006). - Tests require IPC::Cmd (standard since 5.9.5). - AUTHOR Vincent Pit, "", . @@ -61,6 +59,9 @@ SUPPORT perldoc indirect + Tests code coverage report is available at + . + ACKNOWLEDGEMENTS Bram, for motivation and advices. diff --git a/lib/indirect.pm b/lib/indirect.pm index 0f80566..c528b1c 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.03 +Version 0.04 =cut our $VERSION; BEGIN { - $VERSION = '0.03'; + $VERSION = '0.04'; } =head1 SYNOPSIS