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