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