]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.05 v0.05
authorVincent Pit <vince@profvince.com>
Thu, 2 Oct 2008 14:39:32 +0000 (16:39 +0200)
committerVincent Pit <vince@profvince.com>
Thu, 2 Oct 2008 14:39:32 +0000 (16:39 +0200)
Changes
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index 7992267d80ed6c87710f12617926237f4800104a..0dcda772a856d66f72a4d7bac95ddac1e70a9934 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for indirect
 
 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.
 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.
index 666756fd8e7959687b6ed9b9912e3e8e54dc9304..a7b10c199dc5d4e3d30693c14bbc41ce99dc1581 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                indirect
 --- #YAML:1.0
 name:                indirect
-version:             0.04
+version:             0.05
 abstract:            Lexically warn about using the indirect object syntax.
 license:             perl
 author:              
 abstract:            Lexically warn about using the indirect object syntax.
 license:             perl
 author:              
diff --git a/README b/README
index b273c8ad03d6a628b885911f2893b446bc8cd5c1..1aaaac98c97c7aaffb4e1bf1b5ba0a36ca26b161 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect object syntax.
 
 VERSION
     indirect - Lexically warn about using the indirect object syntax.
 
 VERSION
-    Version 0.04
+    Version 0.05
 
 SYNOPSIS
         no indirect;
 
 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 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
 METHODS
   "unimport @opts"
     Magically called when "no indirect @args" is encountered. Turns the
index 450b02567668d59a90aadf322e68f3af17a598fb..0413a9d04689a60c47dc12fbba18c4c24cc54de1 100644 (file)
@@ -9,13 +9,13 @@ indirect - Lexically warn about using the indirect object syntax.
 
 =head1 VERSION
 
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =cut
 
 our $VERSION;
 BEGIN {
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.04';
+ $VERSION = '0.05';
 }
 
 =head1 SYNOPSIS
 }
 
 =head1 SYNOPSIS