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