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