From: Peter Rabbitson Date: Tue, 26 Mar 2013 23:39:18 +0000 (+0100) Subject: Version 0.10 X-Git-Tag: Devel-GlobalDestruction-0.10^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-GlobalDestruction.git;a=commitdiff_plain;h=753fd2ff1a8cbb07a2cad6cb079b50625ca42a03 Version 0.10 --- diff --git a/Changes b/Changes index 676f9e1..e39b54e 100644 --- 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 diff --git a/lib/Devel/GlobalDestruction.pm b/lib/Devel/GlobalDestruction.pm index c4d72a2..263b4b5 100644 --- a/lib/Devel/GlobalDestruction.pm +++ b/lib/Devel/GlobalDestruction.pm @@ -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