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