whitespace
[p5sagit/Try-Tiny.git] / Changes
CommitLineData
12b7dc6c 1Revision history for Try-Tiny
2531688c 2
14a9ccca 3{{$NEXT}}
77ca541b 4 - repository moved to the github p5sagit organization (the primary is on
5 shadowcat, mirrored to github)
14a9ccca 6
729300a9 70.26 2016-03-15 23:42:02Z (TRIAL RELEASE)
9fe27f14 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)
40375a96 11
a3769675 120.25 2016-02-22 20:16:51Z (TRIAL RELEASE)
32d7db43 13 - "finally" blocks are now run for all methods of leaving the try block
4938c300 14 (including via exit, goto) (Lukas Mai, RT#112099)
381a9eef 15
08068486 160.24 2015-12-11 05:20:09Z
5ee27f1f 17 - fix prereq errors in 0.23
b8d74909 18
cb57845a 190.23 2015-12-11 04:04:35Z
8b912d4d 20 - fix syntax of example code (Rudolf Leermakers, doy/Sub-Name/#22)
e4f2f28b 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,
8b912d4d 24 doy/Sub-Name/#27)
760fffd7 25
260.22 2014-04-29
8b912d4d 27 - add optional test deps as recommended prereqs (Karen Etheridge,
28 doy/Sub-Name/#18)
5e9efef3 29
300.21 2014-04-15
8b912d4d 31 - also skip the test if Capture::Tiny is too old (Martin Popel,
32 doy/Sub-Name/#17)
4845abfc 33
340.20 2014-03-21
8b912d4d 35 - documentation updates (David Lowe (Flimm), doy/Sub-Name/#15)
c6f46650 36
370.19 2014-01-22
5e091a19 38 - fix an obscure issue with loading modules during global destruction
8b912d4d 39 (Dagfinn Ilmari Mannsåker, doy/Sub-Name/#11)
40 - documentation updates (anaxagoras, doy/Sub-Name/#12)
3c1bebcd 41
420.18 2013-08-17
8b912d4d 43 - fix tests for pre-Test-More-0.88 (Paul Howarth, doy/Sub-Name/#10)
1d0db44a 44
450.17 2013-08-16
570821c3 46 - work around [rt.perl #119311] which was causing incorrect error messages in
8b912d4d 47 some cases during global destruction (Graham Knop, doy/Sub-Name/#9)
2c468649 48
490.16 2013-07-10
6c790cdb 50 - remove accidental Sub::Name test dep
af5d3402 51
520.15 2013-07-08
3efbb4f9 53 - optionally use Sub::Name to name the try/catch/finally blocks, if available
54 (Mark Fowler)
02dd706a 55
560.14 2013-07-05
d2ae14ad 57 - also throw an exception for catch/finally in scalar context (RT#81070)
0ab368f3 58
590.13 2013-07-04
2531688c 60 - fix tests failing on 5.6.x due to differing DESTROY semantics
2b0d579d 61 - excise superfluous local($@) call - 7% speedup
2245f1ae 62 - fix (fsvo) broken URLs (RT#55659)
9d0e0466 63 - proper exception on erroneous usage of bare catch/finally (RT#81070)
64 - proper exception on erroneous use of multiple catch{} blocks
4c5b99d6 65 - clarify exception occuring on unterminated try block (RT#75712)
ae5ed1be 66 - fix the prototypes shown in docs to match code (RT#79590; thanks, Pushtaev
67 Vadim)
5f5e92c0 68 - warn loudly on exceptions in finally() blocks
12b7dc6c 69 - dzilify
2531688c 70
027bdf22 710.12 2013-01-02
881bf512 72 - doc fixes
73
027bdf22 740.11 2011-08-30
ddb04203 75 - fix broken dist
76
027bdf22 770.10 2011-04-27
98904c59 78 - clarify some docs
79
027bdf22 800.09 2010-11-28
308df09e 81 - don't index Try::Tiny::ScopeGuard
82
027bdf22 830.08 2010-11-28
b637afa1 84 - fix require vs use issue in blead (RT63410)
85
027bdf22 860.07 2010-10-21
69cb48b1 87 - allow multiple finally blocks
88 - pass the error, if any, to finally blocks when called
89
027bdf22 900.06 2010-05-27
8d2ee831 91 - in t/given_when.t use a plan instead of done_testing for more backwards
92 compatibility
c361fb52 93
027bdf22 940.05 2010-05-26
8d2ee831 95 - Documentation fixes and clarifications
f00a529e 96
027bdf22 970.04 2010-01-22
8d2ee831 98 - Restore list context propagation for catch blocks
99 - Fix a bug where finally blocks weren't always invoked
f6e42d81 100
027bdf22 1010.03 2010-01-22
8d2ee831 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.
faecd5a0 106
027bdf22 1070.02 2009-09-02
8d2ee831 108 - Doc fixes from chromatic
109 - Various minor fixes from Adam Kennedy
110 - Additional documentation and code clarifications
111 - 5.005_04 compatibility
0e8fea40 112
027bdf22 1130.01 2009-08-31
8d2ee831 114 - Initial release