]> git.vpit.fr Git - perl/modules/Thread-Cleanup.git/commitdiff
This is 0.02 v0.02
authorVincent Pit <vince@profvince.com>
Thu, 4 Jun 2009 21:35:09 +0000 (23:35 +0200)
committerVincent Pit <vince@profvince.com>
Thu, 4 Jun 2009 21:35:09 +0000 (23:35 +0200)
Changes
META.yml
README
lib/Thread/Cleanup.pm

diff --git a/Changes b/Changes
index 21d16353506e01a3766f98d0344c1d59e3c96092..f48cc4c4a135a47c165003bc864507faf470f039 100644 (file)
--- 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.
 
index 2b8141a4e0e46b5bde4150e7bd41f3d1a415b848..cf316ec39e4eff4f7406b8e7fcba5c38d5af2faa 100644 (file)
--- 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 <perl@profvince.com>
@@ -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 d040c46db61b5e6cdef6c16258f5e686d439c02a..5f67483663e81302c306c775b9e453abf882bde1 100644 (file)
--- 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, "<perl at profvince.com>", <http://www.profvince.com>.
index a05fd7b537f9b330d45706598210633886004dc0..5ee7ea6fb55b1d7d1b96289a4b0b9741e0527c24 100644 (file)
@@ -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);
 }