use a hash rather than array for finalizers to fix segfault
[p5sagit/Try-Tiny.git] / Changes
1 Revision history for Try-Tiny
2
3 {{$NEXT}}
4
5 0.25      2016-02-22 20:16:51Z (TRIAL RELEASE)
6   - "finally" blocks are now run for all methods of leaving the try block
7     (including via exit, goto)  (mauke, RT#112099)
8
9 0.24      2015-12-11 05:20:09Z
10   - fix prereq errors in 0.23
11
12 0.23      2015-12-11 04:04:35Z
13   - fix syntax of example code (Rudolf Leermakers, PR#22)
14   - 'perl' removed from prerequisite recommendations, to avoid tripping up
15     CPAN clients (Graham Knop)
16   - Sub::Util is used preferentially to Sub::Name in most cases (Graham Knop,
17     PR#27)
18
19 0.22  2014-04-29
20   - add optional test deps as recommended prereqs (Karen Etheridge, #18)
21
22 0.21  2014-04-15
23   - also skip the test if Capture::Tiny is too old (Martin Popel, #17)
24
25 0.20  2014-03-21
26   - documentation updates (Flimm, #15)
27
28 0.19  2014-01-22
29   - fix an obscure issue with loading modules during global destruction
30     (ilmari, #11)
31   - documentation updates (anaxagoras, #12)
32
33 0.18  2013-08-17
34   - fix tests for pre-Test-More-0.88 (Paul Howarth, #10)
35
36 0.17  2013-08-16
37   - work around [rt.perl #119311] which was causing incorrect error messages in
38     some cases during global destruction (Graham Knop, #9)
39
40 0.16  2013-07-10
41   - remove accidental Sub::Name test dep
42
43 0.15  2013-07-08
44   - optionally use Sub::Name to name the try/catch/finally blocks, if available
45     (Mark Fowler)
46
47 0.14  2013-07-05
48   - also throw an exception for catch/finally in scalar context (RT#81070)
49
50 0.13  2013-07-04
51   - fix tests failing on 5.6.x due to differing DESTROY semantics
52   - excise superfluous local($@) call - 7% speedup
53   - fix (fsvo) broken URLs (RT#55659)
54   - proper exception on erroneous usage of bare catch/finally (RT#81070)
55   - proper exception on erroneous use of multiple catch{} blocks
56   - clarify exception occuring on unterminated try block (RT#75712)
57   - fix the prototypes shown in docs to match code (RT#79590; thanks, Pushtaev
58     Vadim)
59   - warn loudly on exceptions in finally() blocks
60   - dzilify
61
62 0.12  2013-01-02
63   - doc fixes
64
65 0.11  2011-08-30
66   - fix broken dist
67
68 0.10  2011-04-27
69   - clarify some docs
70
71 0.09  2010-11-28
72   - don't index Try::Tiny::ScopeGuard
73
74 0.08  2010-11-28
75   - fix require vs use issue in blead (RT63410)
76
77 0.07  2010-10-21
78   - allow multiple finally blocks
79   - pass the error, if any, to finally blocks when called
80
81 0.06  2010-05-27
82   - in t/given_when.t use a plan instead of done_testing for more backwards
83     compatibility
84
85 0.05  2010-05-26
86   - Documentation fixes and clarifications
87
88 0.04  2010-01-22
89   - Restore list context propagation for catch blocks
90   - Fix a bug where finally blocks weren't always invoked
91
92 0.03  2010-01-22
93   - Support for 'finally' blocks (Andy Yates)
94   - More documentation and tests (many people)
95   - Sets $@ to the previous value at the beginning of the eval, to allow
96     the capture of an error stack when calling die.
97
98 0.02  2009-09-02
99   - Doc fixes from chromatic
100   - Various minor fixes from Adam Kennedy
101   - Additional documentation and code clarifications
102   - 5.005_04 compatibility
103
104 0.01  2009-08-31
105   - Initial release