fix detection if loaded during global destruction
[p5sagit/Devel-GlobalDestruction.git] / Changes
1 0.11  Wed, 03 Apr 2013
2   * Fix upgrading from version 0.09 or older
3
4 0.10  Tue, 26 Mar 2013
5   * Rewrite pure-perl implementation in terms of B::main_start
6     (greatly simplifies code)
7   * Fix pure-perl behavior under $^C (RT#78619))
8   * Separate XS portion into a compiler-optional dependency
9     Devel::GlobalDestruction::XS
10
11 0.09  Wed, 08 Aug 2012
12   * Rewrite completely broken pure-perl GD detection under threads
13   * Fix pure-perl implementation incorrectly reporting GD during END phase
14
15 0.08  Tue, 31 Jul 2012
16   * Switch to Sub::Exporter::Progressive
17
18 0.07  Wed, 25 Jul 2012
19   * Actually detect errors in pure-perl test
20   * Add prototype to pure-perl pre-5.14 version
21
22 0.06  Thu, 14 Jun 2012
23   * De-retardize XS-less behavior under SpeedyCGI
24   * Test suite now works from within space-containing paths
25
26 0.05  Thu, 26 Apr 2012
27   * Pure-perl implementation for situations where neither ${^GLOBAL_PHASE} nor
28     XS are available
29
30 0.04  Sun, 03 Jul 2011 11:28:51 +0200
31   * To detect a perl with ${^GLOBAL_PHASE}, check for the feature itself instead
32     of a specific perl version (doy).
33   * Update the documentation to reflect the use of ${^GLOBAL_PHASE} if available
34     (doy).
35   * Stop depending on Scope::Guard for the tests (doy).
36   * Upgrade ppport.h from version 3.13 to 3.19.
37
38 0.03
39   * Drop the XS code on perl versions recent enough to have ${^GLOBAL_PHASE}.
40   * Drop code to support perls older than 5.6.  We've always been depending on
41     5.6 anyway.
42     + Use XSLoader without a fallback to DynaLoader.
43     + Use our instead of use vars.