From: Vincent Pit Date: Thu, 4 Jun 2009 21:35:09 +0000 (+0200) Subject: This is 0.02 X-Git-Tag: v0.02^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FThread-Cleanup.git;a=commitdiff_plain;h=304a9193803510a3d58e86df7b93eea52d62337c This is 0.02 --- diff --git a/Changes b/Changes index 21d1635..f48cc4c 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Thread-Cleanup +0.02 2009-06-04 21:35 UTC + + Doc : Typos and nits. + + Fix : Dieing inside a Thread::Cleanup callback no longer causes the + whole process to exit. + + Tst : Test that detached threads destructors don't fire before END. + 0.01 2009-03-16 00:30 UTC First version, released on an unsuspecting world. diff --git a/META.yml b/META.yml index 2b8141a..cf316ec 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Thread-Cleanup -version: 0.01 +version: 0.02 abstract: Hook thread destruction. author: - Vincent Pit @@ -20,12 +20,12 @@ resources: bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Thread-Cleanup homepage: http://search.cpan.org/dist/Thread-Cleanup/ license: http://dev.perl.org/licenses/ - repository: http://git.profvince.com/perl/modules/Thread-Cleanup.git + repository: http://git.profvince.com/?p=perl%2Fmodules%2FThread-Cleanup.git no_index: directory: - t - inc -generated_by: ExtUtils::MakeMaker version 6.48 +generated_by: ExtUtils::MakeMaker version 6.52 meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.4 diff --git a/README b/README index d040c46..5f67483 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Thread::Cleanup - Hook thread destruction. VERSION - Version 0.01 + Version 0.02 SYNOPSIS use Thread::Cleanup; @@ -31,17 +31,17 @@ FUNCTIONS * it will be called for detached threads only if they terminate before the main thread, and the hook will then fire at "END" time ; - * it won't trigger for the the destruction of the main thread. + * it won't trigger for the destruction of the main thread. EXPORT None. DEPENDENCIES - "perl" 5.8. + perl 5.8. - "threads" 1.07. + threads 1.07. - "XSLoader". + XSLoader. AUTHOR Vincent Pit, "", . diff --git a/lib/Thread/Cleanup.pm b/lib/Thread/Cleanup.pm index a05fd7b..5ee7ea6 100644 --- a/lib/Thread/Cleanup.pm +++ b/lib/Thread/Cleanup.pm @@ -11,14 +11,14 @@ Thread::Cleanup - Hook thread destruction. =head1 VERSION -Version 0.01 +Version 0.02 =cut our $VERSION; BEGIN { - $VERSION = '0.01'; + $VERSION = '0.02'; require XSLoader; XSLoader::load(__PACKAGE__, $VERSION); }