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