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