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