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