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