]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.04 v0.04
authorVincent Pit <vince@profvince.com>
Sat, 30 Aug 2008 19:00:24 +0000 (21:00 +0200)
committerVincent Pit <vince@profvince.com>
Sat, 30 Aug 2008 19:00:24 +0000 (21:00 +0200)
Changes
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index 2487e70076bde9714d76f789f7fc1b52d1cb944e..7992267d80ed6c87710f12617926237f4800104a 100644 (file)
--- 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
index 72c3c248a5adc838741ed426ebe7e86533c1335e..666756fd8e7959687b6ed9b9912e3e8e54dc9304 100644 (file)
--- 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 b16dba1f1d2b1ad7a1aa970966736c5218645dd0..b273c8ad03d6a628b885911f2893b446bc8cd5c1 100644 (file)
--- 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, "<perl at profvince.com>", <http://www.profvince.com>.
 
@@ -61,6 +59,9 @@ SUPPORT
 
         perldoc indirect
 
+    Tests code coverage report is available at
+    <http://www.profvince.com/perl/cover/indirect>.
+
 ACKNOWLEDGEMENTS
     Bram, for motivation and advices.
 
index 0f805668f3ac03459cb642cfaa13ff8003b44686..c528b1c45e8fae34e24303de11a95a45f2b2baaf 100644 (file)
@@ -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