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