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