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