]> git.vpit.fr Git - perl/modules/Thread-Cleanup.git/commitdiff
This is 0.03 v0.03
authorVincent Pit <vince@profvince.com>
Wed, 6 Jan 2010 23:28:00 +0000 (00:28 +0100)
committerVincent Pit <vince@profvince.com>
Wed, 6 Jan 2010 23:28:00 +0000 (00:28 +0100)
Changes
META.yml
README
lib/Thread/Cleanup.pm

diff --git a/Changes b/Changes
index f48cc4c4a135a47c165003bc864507faf470f039..150b5be0bc97a4e9d560279d63a603cdd4414dbf 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Thread-Cleanup
 
 Revision history for Thread-Cleanup
 
+0.03    2010-01-06 23:30 UTC
+        + Fix : Named scopes with debugging blead.
+        + Fix : Work around Kwalitee test misfailures.
+
 0.02    2009-06-04 21:35 UTC
         + Doc : Typos and nits.
         + Fix : Dieing inside a Thread::Cleanup callback no longer causes the
 0.02    2009-06-04 21:35 UTC
         + Doc : Typos and nits.
         + Fix : Dieing inside a Thread::Cleanup callback no longer causes the
index cf316ec39e4eff4f7406b8e7fcba5c38d5af2faa..7ed19b0d88aa6d30882b00bd284b1e9a3ad267b7 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Thread-Cleanup
 --- #YAML:1.0
 name:               Thread-Cleanup
-version:            0.02
+version:            0.03
 abstract:           Hook thread destruction.
 author:
     - Vincent Pit <perl@profvince.com>
 abstract:           Hook thread destruction.
 author:
     - Vincent Pit <perl@profvince.com>
@@ -11,7 +11,9 @@ configure_requires:
 build_requires:
     ExtUtils::MakeMaker:  0
     Test::More:           0
 build_requires:
     ExtUtils::MakeMaker:  0
     Test::More:           0
+    threads:              1.07
     threads::shared:      0.91
     threads::shared:      0.91
+    XSLoader:             0
 requires:
     perl:      5.008
     threads:   1.07
 requires:
     perl:      5.008
     threads:   1.07
@@ -25,7 +27,8 @@ no_index:
     directory:
         - t
         - inc
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.52
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
+dynamic_config:     0
diff --git a/README b/README
index 5f67483663e81302c306c775b9e453abf882bde1..feda9deea642113b0d651cd77897b73673178a7e 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Thread::Cleanup - Hook thread destruction.
 
 VERSION
     Thread::Cleanup - Hook thread destruction.
 
 VERSION
-    Version 0.02
+    Version 0.03
 
 SYNOPSIS
         use Thread::Cleanup;
 
 SYNOPSIS
         use Thread::Cleanup;
@@ -24,12 +24,12 @@ DESCRIPTION
 FUNCTIONS
   "register BLOCK"
     Specify that the "BLOCK" will have to be called (in void context,
 FUNCTIONS
   "register BLOCK"
     Specify that the "BLOCK" will have to be called (in void context,
-    without arguments) every time a thread finishes is job. More precisely,
+    without arguments) every time a thread finishes its job. More precisely,
 
 
-    *   it will always be called before the join for joined threads ;
+    *   it will always be called before the joining for joined threads ;
 
 
-    *   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 will be called for detached threads if and only if they terminate
+        before the main thread, and the hook will then fire at "END" time ;
 
     *   it won't trigger for the destruction of the main thread.
 
 
     *   it won't trigger for the destruction of the main thread.
 
@@ -62,7 +62,7 @@ ACKNOWLEDGEMENTS
     Inspired by a question from TonyC on #p5p.
 
 COPYRIGHT & LICENSE
     Inspired by a question from TonyC on #p5p.
 
 COPYRIGHT & LICENSE
-    Copyright 2009 Vincent Pit, all rights reserved.
+    Copyright 2009,2010 Vincent Pit, all rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.
index 548b7b6df1d77ba20bdf5bd7338f6286de49dc36..8c73a56724952635369faab8b6a1997f6c4868ac 100644 (file)
@@ -11,14 +11,14 @@ Thread::Cleanup - Hook thread destruction.
 
 =head1 VERSION
 
 
 =head1 VERSION
 
-Version 0.02
+Version 0.03
 
 =cut
 
 our $VERSION;
 
 BEGIN {
 
 =cut
 
 our $VERSION;
 
 BEGIN {
- $VERSION = '0.02';
+ $VERSION = '0.03';
  require XSLoader;
  XSLoader::load(__PACKAGE__, $VERSION);
 }
  require XSLoader;
  XSLoader::load(__PACKAGE__, $VERSION);
 }