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