From: Vincent Pit Date: Wed, 24 Aug 2011 15:39:33 +0000 (+0200) Subject: This is 0.25 X-Git-Tag: v0.25^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=85db13117ff9f1611f5f0364093799351673840f This is 0.25 --- diff --git a/Changes b/Changes index 87f1129..1d730c6 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for indirect +0.25 2011-08-24 15:40 UTC + + Fix : RT #69291 is now also fixed for perl 5.8. The pragma will no + longer vivify the "indirect" entry in the hints hash %^H on + perl 5.8. + + Tst : Attempt to make t/50-external.t pass on Cygwin. + 0.24 2011-07-17 23:15 UTC + Fix : [RT #64521] : "no indirect" leaking into eval. This is currently only fixed for perl 5.10 (perl 5.12 and diff --git a/META.json b/META.json index a8a7ef5..2e83a2c 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.58, CPAN::Meta::Converter version 2.110930001", + "generated_by" : "ExtUtils::MakeMaker version 6.59, CPAN::Meta::Converter version 2.112150", "license" : [ "perl_5" ], @@ -52,5 +52,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git" } }, - "version" : "0.24" + "version" : "0.25" } diff --git a/META.yml b/META.yml index ec66200..4fa62c8 100644 --- a/META.yml +++ b/META.yml @@ -9,7 +9,7 @@ build_requires: configure_requires: ExtUtils::MakeMaker: 0 dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.58, CPAN::Meta::Converter version 2.110930001' +generated_by: 'ExtUtils::MakeMaker version 6.59, CPAN::Meta::Converter version 2.112150' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -27,4 +27,4 @@ resources: 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.24 +version: 0.25 diff --git a/README b/README index fcf3c19..2b53d6f 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME indirect - Lexically warn about using the indirect object syntax. VERSION - Version 0.24 + Version 0.25 SYNOPSIS # In a script diff --git a/lib/indirect.pm b/lib/indirect.pm index bc3d1d6..1eac9b9 100644 --- a/lib/indirect.pm +++ b/lib/indirect.pm @@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect object syntax. =head1 VERSION -Version 0.24 +Version 0.25 =cut our $VERSION; BEGIN { - $VERSION = '0.24'; + $VERSION = '0.25'; } =head1 SYNOPSIS