changelog
[p5sagit/Try-Tiny.git] / Changes
1 Revision history for Try-Tiny
2
3 {{$NEXT}}
4   - optionally use Sub::Name to name the try/catch/finally blocks, if available
5     (Mark Fowler)
6
7 0.14  2013-07-05
8   - also throw an exception for catch/finally in scalar context (RT#81070)
9
10 0.13  2013-07-04
11   - fix tests failing on 5.6.x due to differing DESTROY semantics
12   - excise superfluous local($@) call - 7% speedup
13   - fix (fsvo) broken URLs (RT#55659)
14   - proper exception on erroneous usage of bare catch/finally (RT#81070)
15   - proper exception on erroneous use of multiple catch{} blocks
16   - clarify exception occuring on unterminated try block (RT#75712)
17   - fix the prototypes shown in docs to match code (RT#79590; thanks, Pushtaev
18     Vadim)
19   - warn loudly on exceptions in finally() blocks
20   - dzilify
21
22 0.12
23   - doc fixes
24
25 0.11
26   - fix broken dist
27
28 0.10
29   - clarify some docs
30
31 0.09
32   - don't index Try::Tiny::ScopeGuard
33
34 0.08
35   - fix require vs use issue in blead (RT63410)
36
37 0.07
38   - allow multiple finally blocks
39   - pass the error, if any, to finally blocks when called
40
41 0.06
42   - in t/given_when.t use a plan instead of done_testing for more backwards
43     compatibility
44
45 0.05
46   - Documentation fixes and clarifications
47
48 0.04
49   - Restore list context propagation for catch blocks
50   - Fix a bug where finally blocks weren't always invoked
51
52 0.03
53   - Support for 'finally' blocks (Andy Yates)
54   - More documentation and tests (many people)
55   - Sets $@ to the previous value at the beginning of the eval, to allow
56     the capture of an error stack when calling die.
57
58 0.02
59   - Doc fixes from chromatic
60   - Various minor fixes from Adam Kennedy
61   - Additional documentation and code clarifications
62   - 5.005_04 compatibility
63
64 0.01
65   - Initial release