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