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