]> git.vpit.fr Git - perl/modules/B-RecDeparse.git/commitdiff
This is 0.10 v0.10
authorVincent Pit <vince@profvince.com>
Thu, 12 Mar 2015 18:16:35 +0000 (15:16 -0300)
committerVincent Pit <vince@profvince.com>
Thu, 12 Mar 2015 18:16:35 +0000 (15:16 -0300)
Changes
META.json
META.yml
README
lib/B/RecDeparse.pm

diff --git a/Changes b/Changes
index 6bb1c992a32cd08b9646157cf29ed2e11367e55b..fb6a4659cba4d56941575c2b6f7782709c0dc150 100644 (file)
--- 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
index d03303a0a26710c6e800eeba7d52bec5c8eaebe3..204a59eae0f80ec3318bfaebb6bc5461ecffa6a9 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
       "Vincent Pit <perl@profvince.com>"
    ],
    "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"
 }
index cb0b82c7586bc53b8e3ca05e04a930383e3e5d36..ba16e0354352a3a41b3043bc0a943e449ed14532 100644 (file)
--- 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 da35890530fddfbe3fceb4ec261f09b06e285c61..e1bd86b4506d8e8c984f745cd2f05374f7c9daf1 100644 (file)
--- 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
     <http://www.profvince.com/perl/cover/B-RecDeparse>.
 
 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
index a69fd2ece61a0d9f0c017fc9d65360f3b5adb011..286b28920ba06f29f1650448ac788b9b81d89f94 100644 (file)
@@ -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