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