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