From: Vincent Pit Date: Wed, 12 Nov 2008 19:48:48 +0000 (+0100) Subject: This is 0.04 X-Git-Tag: v0.04^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FB-RecDeparse.git;a=commitdiff_plain;h=77ec52f71f128e1b4d092107ce21545e5cbc7252 This is 0.04 --- diff --git a/Changes b/Changes index 35650f2..f3d4bce 100644 --- 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. diff --git a/META.yml b/META.yml index abe5c49..28a1a5d 100644 --- 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 -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 ac635ad..673b96a 100644 --- 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, "", . - 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 diff --git a/lib/B/RecDeparse.pm b/lib/B/RecDeparse.pm index 20246c0..7134f5c 100644 --- a/lib/B/RecDeparse.pm +++ b/lib/B/RecDeparse.pm @@ -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