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