Version 0.10 Devel-GlobalDestruction-0.10
Peter Rabbitson [Tue, 26 Mar 2013 23:39:18 +0000 (00:39 +0100)]
Changes
lib/Devel/GlobalDestruction.pm

diff --git a/Changes b/Changes
index 676f9e1..e39b54e 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,9 @@
+0.10  Tue, 26 Mar 2013
+  * Rewrite pure-perl implementation in terms of B::main_start
+    (greatly simplifies code)
   * Fix pure-perl behavior under $^C (RT#78619))
+  * Separate XS portion into a compiler-optional dependency
+    Devel::GlobalDestruction::XS
 
 0.09  Wed, 08 Aug 2012
   * Rewrite completely broken pure-perl GD detection under threads
index c4d72a2..263b4b5 100644 (file)
@@ -3,7 +3,7 @@ package Devel::GlobalDestruction;
 use strict;
 use warnings;
 
-our $VERSION = '0.09';
+our $VERSION = '0.10';
 
 use Sub::Exporter::Progressive -setup => {
   exports => [ qw(in_global_destruction) ],
@@ -48,8 +48,8 @@ __END__
 
 =head1 NAME
 
-Devel::GlobalDestruction - Expose the flag which marks global
-destruction.
+Devel::GlobalDestruction - Provides function returning the equivalent of
+C<${^GLOBAL_PHASE} eq 'DESTRUCT'> for older perls.
 
 =head1 SYNOPSIS