]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.32 v0.32
authorVincent Pit <vince@profvince.com>
Sun, 21 Sep 2014 20:15:52 +0000 (22:15 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 21 Sep 2014 20:15:52 +0000 (22:15 +0200)
Changes
META.json
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index 32e9949a5efdac741ec5f8b84265f15b2e18ad5e..cc2be23b8e3a6784b0339240a5f8854262fdebb2 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,14 @@
 Revision history for indirect
 
+0.32    2014-09-21 20:15 UTC
+        + Add : Support for the PERL_OP_PARENT optional feature introduced in
+                perl 5.21.2.
+        + Fix : [RT #92806] : Tests that use run_perl() fail on Android
+                Thanks Brian Fraser for the patch.
+        + Fix : indirect constructs will no longer segfault while inside
+                the empty package on perl 5.8.x. This fix may also prevent
+                some segfaults during global destruction.
+
 0.31    2013-09-05 16:45 UTC
         + Fix : [RT #88428] : no indirect in eval can trigger for direct calls
                 on __PACKAGE__
index 61e5408ecc6e97102ccae5e53f65afd88b4bc165..1a9de329f9b4266c7264a25f5b1c78564811fda7 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
       "Vincent Pit <perl@profvince.com>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140",
+   "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142060",
    "license" : [
       "perl_5"
    ],
@@ -56,5 +56,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git"
       }
    },
-   "version" : "0.31"
+   "version" : "0.32"
 }
index 4251fca1da4a6f667425fd571e084575cb0bf20b..88ba680b3573d11a10c38e77f203546e383744f5 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -3,32 +3,32 @@ abstract: 'Lexically warn about using the indirect method call syntax.'
 author:
   - 'Vincent Pit <perl@profvince.com>'
 build_requires:
-  Carp: 0
-  Config: 0
-  ExtUtils::MakeMaker: 0
-  Test::More: 0
-  XSLoader: 0
+  Carp: '0'
+  Config: '0'
+  ExtUtils::MakeMaker: '0'
+  Test::More: '0'
+  XSLoader: '0'
 configure_requires:
-  Config: 0
-  ExtUtils::MakeMaker: 0
+  Config: '0'
+  ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140'
+generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142060'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
+  version: '1.4'
 name: indirect
 no_index:
   directory:
     - t
     - inc
 requires:
-  Carp: 0
-  XSLoader: 0
-  perl: 5.008001
+  Carp: '0'
+  XSLoader: '0'
+  perl: '5.008001'
 resources:
   bugtracker: http://rt.cpan.org/Dist/Display.html?Name=indirect
   homepage: http://search.cpan.org/dist/indirect/
   license: http://dev.perl.org/licenses/
   repository: http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git
-version: 0.31
+version: '0.32'
diff --git a/README b/README
index 0dd92add2476e4f7a1899c50e3765c3e10f18ce0..f332f4a3f40185dcf03a234e65c9d096c6701711 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect method call syntax.
 
 VERSION
-    Version 0.31
+    Version 0.32
 
 SYNOPSIS
     In a script :
@@ -208,7 +208,7 @@ ACKNOWLEDGEMENTS
     reporting issues.
 
 COPYRIGHT & LICENSE
-    Copyright 2008,2009,2010,2011,2012,2013 Vincent Pit, all rights
+    Copyright 2008,2009,2010,2011,2012,2013,2014 Vincent Pit, all rights
     reserved.
 
     This program is free software; you can redistribute it and/or modify it
index 763bf95df0f6e90005ea5df084407dd803fd9f27..80ccfae952b448e450e1df268f32bbaabb735613 100644 (file)
@@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect method call syntax.
 
 =head1 VERSION
 
-Version 0.31
+Version 0.32
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.31';
+ $VERSION = '0.32';
 }
 
 =head1 SYNOPSIS