From: Vincent Pit Date: Thu, 12 Mar 2015 18:16:35 +0000 (-0300) Subject: This is 0.10 X-Git-Tag: v0.10^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FB-RecDeparse.git;a=commitdiff_plain;h=22cd37cb62e8ca05600172ecb35338f59581e023 This is 0.10 --- diff --git a/Changes b/Changes index 6bb1c99..fb6a465 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for B-RecDeparse +0.10 2015-03-12 18:15 UTC + + Fix : [RT #99809] : Fix for 5.21.5 + Thanks Father Chrysostomos for reporting and contributing a + patch. + + Tst : Work around a change of behaviour of B::Deparse in 5.21.x + that causes sub references compiled inside "use strict 'vars'" + to be fully qualified when deparsed. + 0.09 2014-10-04 17:30 UTC + Fix : [RT #99177] : Fix for 5.21.4. Thanks Father Chrysostomos for reporting and contributing a diff --git a/META.json b/META.json index d03303a..204a59e 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 0, - "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690", + "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001", "license" : [ "perl_5" ], @@ -58,5 +58,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FB-RecDeparse.git" } }, - "version" : "0.09" + "version" : "0.10" } diff --git a/META.yml b/META.yml index cb0b82c..ba16e03 100644 --- a/META.yml +++ b/META.yml @@ -12,7 +12,7 @@ build_requires: configure_requires: ExtUtils::MakeMaker: '0' dynamic_config: 0 -generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690' +generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -33,4 +33,4 @@ resources: 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 -version: '0.09' +version: '0.10' diff --git a/README b/README index da35890..e1bd86b 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME B::RecDeparse - Deparse recursively into subroutines. VERSION - Version 0.09 + Version 0.10 SYNOPSIS # Deparse recursively a Perl one-liner : @@ -54,6 +54,8 @@ METHODS * "pp_refgen" + * "pp_srefgen" + * "pp_gv" Otherwise, B::RecDeparse inherits all methods from B::Deparse. @@ -89,7 +91,7 @@ SUPPORT . COPYRIGHT & LICENSE - Copyright 2008,2009,2010,2011,2013,2014 Vincent Pit, all rights + Copyright 2008,2009,2010,2011,2013,2014,2015 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it diff --git a/lib/B/RecDeparse.pm b/lib/B/RecDeparse.pm index a69fd2e..286b289 100644 --- a/lib/B/RecDeparse.pm +++ b/lib/B/RecDeparse.pm @@ -17,11 +17,11 @@ B::RecDeparse - Deparse recursively into subroutines. =head1 VERSION -Version 0.09 +Version 0.10 =cut -our $VERSION = '0.09'; +our $VERSION = '0.10'; =head1 SYNOPSIS