Clarify exception on unexpected try() arguments
[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
9 0.12
10   - doc fixes
11
12 0.11
13   - fix broken dist
14
15 0.10
16   - clarify some docs
17
18 0.09
19   - don't index Try::Tiny::ScopeGuard
20
21 0.08
22   - fix require vs use issue in blead (RT63410)
23
24 0.07
25   - allow multiple finally blocks
26   - pass the error, if any, to finally blocks when called
27
28 0.06
29   - in t/given_when.t use a plan instead of done_testing for more backwards
30     compatibility
31
32 0.05
33   - Documentation fixes and clarifications
34
35 0.04
36   - Restore list context propagation for catch blocks
37   - Fix a bug where finally blocks weren't always invoked
38
39 0.03
40   - Support for 'finally' blocks (Andy Yates)
41   - More documentation and tests (many people)
42   - Sets $@ to the previous value at the beginning of the eval, to allow
43     the capture of an error stack when calling die.
44
45 0.02
46   - Doc fixes from chromatic
47   - Various minor fixes from Adam Kennedy
48   - Additional documentation and code clarifications
49   - 5.005_04 compatibility
50
51 0.01
52   - Initial release