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