From: Vincent Pit Date: Mon, 31 May 2010 22:52:31 +0000 (+0200) Subject: This is 0.04 X-Git-Tag: v0.04^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FThread-Cleanup.git;a=commitdiff_plain;h=18ca8e7e1c58e37648ec69edcac6d04ff371fa71 This is 0.04 --- diff --git a/Changes b/Changes index 150b5be..635a6fa 100644 --- 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. diff --git a/MANIFEST b/MANIFEST index 07996e3..2759fac 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,6 +1,7 @@ Changes Cleanup.xs MANIFEST +META.yml Makefile.PL README lib/Thread/Cleanup.pm diff --git a/META.yml b/META.yml index 7ed19b0..581a8ca 100644 --- 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 diff --git a/README b/README index feda9de..1b1c674 100644 --- 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; diff --git a/lib/Thread/Cleanup.pm b/lib/Thread/Cleanup.pm index 8c73a56..53aca1a 100644 --- a/lib/Thread/Cleanup.pm +++ b/lib/Thread/Cleanup.pm @@ -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); }