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