changelog
[p5sagit/Try-Tiny.git] / Changes
1 Revision history for Try-Tiny
2
3 {{$NEXT}}
4   - fix an obscure issue with loading modules during global destruction
5     (ilmari, #11)
6   - documentation updates (anaxagoras, #12)
7
8 0.18  2013-08-17
9   - fix tests for pre-Test-More-0.88 (Paul Howarth, #10)
10
11 0.17  2013-08-16
12   - work around [rt.perl #119311] which was causing incorrect error messages in
13     some cases during global destruction (Graham Knop, #9)
14
15 0.16  2013-07-10
16   - remove accidental Sub::Name test dep
17
18 0.15  2013-07-08
19   - optionally use Sub::Name to name the try/catch/finally blocks, if available
20     (Mark Fowler)
21
22 0.14  2013-07-05
23   - also throw an exception for catch/finally in scalar context (RT#81070)
24
25 0.13  2013-07-04
26   - fix tests failing on 5.6.x due to differing DESTROY semantics
27   - excise superfluous local($@) call - 7% speedup
28   - fix (fsvo) broken URLs (RT#55659)
29   - proper exception on erroneous usage of bare catch/finally (RT#81070)
30   - proper exception on erroneous use of multiple catch{} blocks
31   - clarify exception occuring on unterminated try block (RT#75712)
32   - fix the prototypes shown in docs to match code (RT#79590; thanks, Pushtaev
33     Vadim)
34   - warn loudly on exceptions in finally() blocks
35   - dzilify
36
37 0.12  2013-01-02
38   - doc fixes
39
40 0.11  2011-08-30
41   - fix broken dist
42
43 0.10  2011-04-27
44   - clarify some docs
45
46 0.09  2010-11-28
47   - don't index Try::Tiny::ScopeGuard
48
49 0.08  2010-11-28
50   - fix require vs use issue in blead (RT63410)
51
52 0.07  2010-10-21
53   - allow multiple finally blocks
54   - pass the error, if any, to finally blocks when called
55
56 0.06  2010-05-27
57   - in t/given_when.t use a plan instead of done_testing for more backwards
58     compatibility
59
60 0.05  2010-05-26
61   - Documentation fixes and clarifications
62
63 0.04  2010-01-22
64   - Restore list context propagation for catch blocks
65   - Fix a bug where finally blocks weren't always invoked
66
67 0.03  2010-01-22
68   - Support for 'finally' blocks (Andy Yates)
69   - More documentation and tests (many people)
70   - Sets $@ to the previous value at the beginning of the eval, to allow
71     the capture of an error stack when calling die.
72
73 0.02  2009-09-02
74   - Doc fixes from chromatic
75   - Various minor fixes from Adam Kennedy
76   - Additional documentation and code clarifications
77   - 5.005_04 compatibility
78
79 0.01  2009-08-31
80   - Initial release