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