]> git.vpit.fr Git - perl/modules/Thread-Cleanup.git/commitdiff
This is 0.04 v0.04
authorVincent Pit <vince@profvince.com>
Mon, 31 May 2010 22:52:31 +0000 (00:52 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 31 May 2010 22:52:31 +0000 (00:52 +0200)
Changes
MANIFEST
META.yml
README
lib/Thread/Cleanup.pm

diff --git a/Changes b/Changes
index 150b5be0bc97a4e9d560279d63a603cdd4414dbf..635a6fa16d32566fd71db5f6fa1a7298eebfd63a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Thread-Cleanup
 
+0.04    2010-05-31 22:55 UTC
+        + Fix : Compatibility with perl 5.13.1.
+
 0.03    2010-01-06 23:30 UTC
         + Fix : Named scopes with debugging blead.
         + Fix : Work around Kwalitee test misfailures.
index 07996e3bbd379087c46185e9847de361462a7c7b..2759facd3651f0126c6f70f0102d35c448f42177 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,6 +1,7 @@
 Changes
 Cleanup.xs
 MANIFEST
+META.yml
 Makefile.PL
 README
 lib/Thread/Cleanup.pm
index 7ed19b0d88aa6d30882b00bd284b1e9a3ad267b7..581a8ca6ae6e604c6377f997a93db0588192e003 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Thread-Cleanup
-version:            0.03
+version:            0.04
 abstract:           Hook thread destruction.
 author:
     - Vincent Pit <perl@profvince.com>
diff --git a/README b/README
index feda9deea642113b0d651cd77897b73673178a7e..1b1c6744944f302abe9a795c890de8891b51d3b6 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Thread::Cleanup - Hook thread destruction.
 
 VERSION
-    Version 0.03
+    Version 0.04
 
 SYNOPSIS
         use Thread::Cleanup;
index 8c73a56724952635369faab8b6a1997f6c4868ac..53aca1a29aef4fc9e821538c1d7d08110ee06caa 100644 (file)
@@ -11,14 +11,14 @@ Thread::Cleanup - Hook thread destruction.
 
 =head1 VERSION
 
-Version 0.03
+Version 0.04
 
 =cut
 
 our $VERSION;
 
 BEGIN {
- $VERSION = '0.03';
+ $VERSION = '0.04';
  require XSLoader;
  XSLoader::load(__PACKAGE__, $VERSION);
 }