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