From: Vincent Pit Date: Mon, 6 Apr 2015 22:20:22 +0000 (-0300) Subject: This is 0.35 X-Git-Tag: v0.35^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=44fb7d6a933c6ebd76082e74c60dab5e5a5da50e This is 0.35 --- diff --git a/Changes b/Changes index a1cd1a8..ebc48f3 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for indirect +0.35 2015-04-06 22:20 UTC + + Fix : The module could end being disabled in one thread if it was + first loaded in another thread and that thread was immediately + terminated. This is now fixed and should address test failures + of t//09-load-threads.t and t/42-threads-global.t. + 0.34 2015-04-02 19:50 UTC + Chg : The new environment variable to enable thread tests on older perls is PERL_FORCE_TEST_THREADS. Note that this variable diff --git a/META.json b/META.json index 93e38a6..2e0070f 100644 --- a/META.json +++ b/META.json @@ -57,5 +57,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git" } }, - "version" : "0.34" + "version" : "0.35" } diff --git a/META.yml b/META.yml index dfac071..0052cf8 100644 --- a/META.yml +++ b/META.yml @@ -32,4 +32,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.34' +version: '0.35' diff --git a/README b/README index f2153cf..97394c7 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME indirect - Lexically warn about using the indirect method call syntax. VERSION - Version 0.34 + Version 0.35 SYNOPSIS In a script : diff --git a/lib/indirect.pm b/lib/indirect.pm index 391cdfd..d0f1068 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.34 +Version 0.35 =cut our $VERSION; BEGIN { - $VERSION = '0.34'; + $VERSION = '0.35'; } =head1 SYNOPSIS