]> git.vpit.fr Git - perl/modules/B-RecDeparse.git/commitdiff
This is 0.05 v0.05
authorVincent Pit <vince@profvince.com>
Sun, 27 Feb 2011 21:14:50 +0000 (22:14 +0100)
committerVincent Pit <vince@profvince.com>
Sun, 27 Feb 2011 21:14:50 +0000 (22:14 +0100)
Changes
META.yml
README
lib/B/RecDeparse.pm

diff --git a/Changes b/Changes
index f3d4bce70d53bdb887b9d5b78b36d6ce8634d0b8..c186af9e1e7c9f191a410f355c46e485d0250912 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,16 @@
 Revision history for B-RecDeparse
 
+0.05    2011-02-27 21:15 UTC
+        + Chg : perl 5.8.1 is required.
+        + Fix : [RT #63842] : Breakage on some imported subs.
+                This was actually a problem with how undeclared subroutines
+                or @_ were deparsed.
+                Thanks Kent Fredric for reporting and suggesting a fix.
+        + Fix : Empty or XS subroutines won't be (wrongly) deparsed anymore.
+        + Fix : Recursive subroutines won't be deparsed more than one level.
+        + Fix : Work around Kwalitee test misfailures.
+        + Upd : Resources in META.yml.
+
 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.
index 28a1a5dbd9582039b6b4fcbc34a38c1ef556796c..a86eaa559cf2816761c461f66e5d2995376e4a84 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               B-RecDeparse
-version:            0.04
+version:            0.05
 abstract:           Deparse recursively into subroutines.
 author:
     - Vincent Pit <perl@profvince.com>
@@ -8,18 +8,30 @@ license:            perl
 distribution_type:  module
 configure_requires:
     ExtUtils::MakeMaker:  0
+build_requires:
+    B::Deparse:           0
+    base:                 0
+    Carp:                 0
+    Config:               0
+    ExtUtils::MakeMaker:  0
+    Test::More:           0
 requires:
     B::Deparse:  0
+    base:        0
     Carp:        0
     Config:      0
+    perl:        5.008001
+resources:
+    bugtracker:  http://rt.cpan.org/NoAuth/ReportBug.html?Queue=B-RecDeparse
+    homepage:    http://search.cpan.org/dist/B-RecDeparse/
+    license:     http://dev.perl.org/licenses/
+    repository:  http://git.profvince.com/?p=perl%2Fmodules%2FB-RecDeparse.git
 no_index:
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.48
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
-build_requires:
-    ExtUtils::MakeMaker:           0
-    Test::More:                    0
+dynamic_config:     0
diff --git a/README b/README
index 673b96ac42ff966f224c555dea0f21707c128bbd..36020583b619ca2b8e82ade8314d1136cae7acb5 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     B::RecDeparse - Deparse recursively into subroutines.
 
 VERSION
-    Version 0.04
+    Version 0.05
 
 SYNOPSIS
         perl -MO=RecDeparse,deparse,[@B__Deparse_opts],level,-1 [ -e '...' | bleh.pl ]
@@ -31,6 +31,7 @@ METHODS
 
   "compile"
   "init"
+  "deparse_sub"
   "pp_entersub"
   "pp_refgen"
   "pp_gv"
@@ -44,6 +45,8 @@ EXPORT
     this one.
 
 DEPENDENCIES
+    perl 5.8.1.
+
     Carp (standard since perl 5), Config (since perl 5.00307) and B::Deparse
     (since perl 5.005).
 
@@ -68,7 +71,7 @@ SUPPORT
     <http://www.profvince.com/perl/cover/B-RecDeparse>.
 
 COPYRIGHT & LICENSE
-    Copyright 2008 Vincent Pit, all rights reserved.
+    Copyright 2008,2009,2010,2011 Vincent Pit, all rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.
index f2b3660b4a881e6eceb6ab74b858127f079d4e69..791c5750523092ed49d87630b8290a9c15e6752e 100644 (file)
@@ -17,11 +17,11 @@ B::RecDeparse - Deparse recursively into subroutines.
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =cut
 
-our $VERSION = '0.04';
+our $VERSION = '0.05';
 
 =head1 SYNOPSIS