From: Vincent Pit Date: Mon, 31 May 2010 23:08:22 +0000 (+0200) Subject: This is 0.21 X-Git-Tag: v0.21^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=e3cc63669e7d84f338348281f313709bae0be8af This is 0.21 --- diff --git a/Changes b/Changes index 9ddf550..83b6f92 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for indirect +0.21 2010-05-31 23:10 UTC + + Chg : perl 5.8.1 is now required (instead of 5.8.0). + + Fix : [RT #57699] : indirect fail with 64-bit int on 5.13.1. + It was actually a problem with thread destructors segfaulting + because they weren't called at the right time anymore. + Thanks Andrew Main for reporting. + + Tst : A few more regression tests about the scope leak bug. + 0.20 2010-04-18 21:25 UTC + Fix : [RT #50570] : "indirect" leaking into LWP. Thanks Andrew Main for reporting. diff --git a/META.yml b/META.yml index dae5a3e..c92902a 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: indirect -version: 0.20 +version: 0.21 abstract: Lexically warn about using the indirect object syntax. author: - Vincent Pit @@ -13,7 +13,7 @@ build_requires: Test::More: 0 XSLoader: 0 requires: - perl: 5.008 + perl: 5.008001 XSLoader: 0 resources: bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=indirect diff --git a/README b/README index a3e297a..a563ea0 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME indirect - Lexically warn about using the indirect object syntax. VERSION - Version 0.20 + Version 0.21 SYNOPSIS # In a script @@ -120,7 +120,7 @@ CAVEATS Hence "my $x = new Class if 0" will be caught. DEPENDENCIES - perl 5.8. + perl 5.8.1. XSLoader (standard since perl 5.006). diff --git a/lib/indirect.pm b/lib/indirect.pm index b49c702..239773f 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.20 +Version 0.21 =cut our $VERSION; BEGIN { - $VERSION = '0.20'; + $VERSION = '0.21'; } =head1 SYNOPSIS