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