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