From: Vincent Pit Date: Sun, 21 Sep 2014 20:15:52 +0000 (+0200) Subject: This is 0.32 X-Git-Tag: v0.32^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=8eb21ccddb7d9f4040f3ec9069cf013c4d6f4a51 This is 0.32 --- diff --git a/Changes b/Changes index 32e9949..cc2be23 100644 --- 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__ diff --git a/META.json b/META.json index 61e5408..1a9de32 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "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" } diff --git a/META.yml b/META.yml index 4251fca..88ba680 100644 --- a/META.yml +++ b/META.yml @@ -3,32 +3,32 @@ abstract: 'Lexically warn about using the indirect method call syntax.' author: - 'Vincent Pit ' 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 0dd92ad..f332f4a 100644 --- 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 diff --git a/lib/indirect.pm b/lib/indirect.pm index 763bf95..80ccfae 100644 --- a/lib/indirect.pm +++ b/lib/indirect.pm @@ -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