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