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