]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.35 v0.35
authorVincent Pit <vince@profvince.com>
Mon, 6 Apr 2015 22:20:22 +0000 (19:20 -0300)
committerVincent Pit <vince@profvince.com>
Mon, 6 Apr 2015 22:20:22 +0000 (19:20 -0300)
Changes
META.json
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index a1cd1a8b9cf625ddd0286a2fa1c3d73de63e5bec..ebc48f3df96d50c01b271201ff9596aaae21fbdf 100644 (file)
--- 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
index 93e38a6c225d220dd0f2cee5fe8f75f0708432d8..2e0070fef6c4f8279b72b3d7acafa5543bec1f95 100644 (file)
--- 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"
 }
index dfac071f099d08365cfcb35a775ef54b618ed175..0052cf8f3fa296a46b3aa3606fc601a25800152e 100644 (file)
--- 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 f2153cfdb5f0557d0530f6686f11d1f35f9c9ffa..97394c7d85f76c32e358e051d81a7224e341373d 100644 (file)
--- 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 :
index 391cdfd10c9181b067f21fbb3914b73704e58bfc..d0f1068fa58f4511564e920592c72d8fb11df04a 100644 (file)
@@ -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