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