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