]> git.vpit.fr Git - perl/modules/B-RecDeparse.git/commitdiff
This is 0.04 v0.04
authorVincent Pit <vince@profvince.com>
Wed, 12 Nov 2008 19:48:48 +0000 (20:48 +0100)
committerVincent Pit <vince@profvince.com>
Wed, 12 Nov 2008 19:48:48 +0000 (20:48 +0100)
Changes
META.yml
README
lib/B/RecDeparse.pm

diff --git a/Changes b/Changes
index 35650f230aee1bac7b7dfc37a7d47faefe8d4696..f3d4bce70d53bdb887b9d5b78b36d6ce8634d0b8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for B-RecDeparse
 
+0.04    2008-11-12 19:50 UTC
+        + Fix : Compatibility with 5.8.9.
+        + Fix : Only fool single_delim when we're coming from B::RecDeparse.
+        + Tst : Function calls in other packages.
+        + Upd : META.yml spec updated to 1.4.
+
 0.03    2008-08-20 14:30 UTC
         + Fix : Bug when recursing into a sub that had a gv op which wasn't
                 associated with a rv2cv.
index abe5c49a79d30d17fa2be4984c08e735744fcf4b..28a1a5dbd9582039b6b4fcbc34a38c1ef556796c 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,19 +1,25 @@
 --- #YAML:1.0
-name:                B-RecDeparse
-version:             0.03
-abstract:            Deparse recursively into subroutines.
-license:             perl
-author:              
+name:               B-RecDeparse
+version:            0.04
+abstract:           Deparse recursively into subroutines.
+author:
     - Vincent Pit <perl@profvince.com>
-generated_by:        ExtUtils::MakeMaker version 6.42
-distribution_type:   module
-requires:     
-    B::Deparse:                    0
-    Carp:                          0
-    Config:                        0
+license:            perl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    B::Deparse:  0
+    Carp:        0
+    Config:      0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.48
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4
 build_requires:
     ExtUtils::MakeMaker:           0
     Test::More:                    0
diff --git a/README b/README
index ac635ade3f5bd35ecbdf4382a5676b3ec66cbb21..673b96ac42ff966f224c555dea0f21707c128bbd 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     B::RecDeparse - Deparse recursively into subroutines.
 
 VERSION
-    Version 0.03
+    Version 0.04
 
 SYNOPSIS
         perl -MO=RecDeparse,deparse,[@B__Deparse_opts],level,-1 [ -e '...' | bleh.pl ]
@@ -14,7 +14,7 @@ SYNOPSIS
         my $code = $brd->coderef2text(sub { ... });
 
 DESCRIPTION
-    This module extends B::Deparse by making you recursively replace
+    This module extends B::Deparse by making it recursively replace
     subroutine calls encountered when deparsing.
 
     Please refer to B::Deparse documentation for what to do and how to do
@@ -34,8 +34,8 @@ METHODS
   "pp_entersub"
   "pp_refgen"
   "pp_gv"
-    Functions and methods from B::Deparse overriden by this module. Never
-    call them directly.
+    Functions and methods from B::Deparse reimplemented by this module.
+    Never call them directly.
 
     Otherwise, B::RecDeparse inherits all methods from B::Deparse.
 
@@ -50,8 +50,7 @@ DEPENDENCIES
 AUTHOR
     Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
 
-    You can contact me by mail or on #perl @ FreeNode (vincent or
-    Prof_Vince).
+    You can contact me by mail or on "irc.perl.org" (vincent).
 
 BUGS
     Please report any bugs or feature requests to "bug-b-recdeparse at
index 20246c01cd3715deb016477344725e382af09ef5..7134f5cc2a108e8c5bd16b81222468df2890bedc 100644 (file)
@@ -16,11 +16,11 @@ B::RecDeparse - Deparse recursively into subroutines.
 
 =head1 VERSION
 
-Version 0.03
+Version 0.04
 
 =cut
 
-our $VERSION = '0.03';
+our $VERSION = '0.04';
 
 =head1 SYNOPSIS