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