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