The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Revision history for Try-Tiny

0.14  2013-07-05
  - also throw an exception for catch/finally in scalar context (RT#81070)

0.13  2013-07-04
  - fix tests failing on 5.6.x due to differing DESTROY semantics
  - excise superfluous local($@) call - 7% speedup
  - fix (fsvo) broken URLs (RT#55659)
  - proper exception on erroneous usage of bare catch/finally (RT#81070)
  - proper exception on erroneous use of multiple catch{} blocks
  - clarify exception occuring on unterminated try block (RT#75712)
  - fix the prototypes shown in docs to match code (RT#79590; thanks, Pushtaev
    Vadim)
  - warn loudly on exceptions in finally() blocks
  - dzilify

0.12
  - doc fixes

0.11
  - fix broken dist

0.10
  - clarify some docs

0.09
  - don't index Try::Tiny::ScopeGuard

0.08
  - fix require vs use issue in blead (RT63410)

0.07
  - allow multiple finally blocks
  - pass the error, if any, to finally blocks when called

0.06
  - in t/given_when.t use a plan instead of done_testing for more backwards
    compatibility

0.05
  - Documentation fixes and clarifications

0.04
  - Restore list context propagation for catch blocks
  - Fix a bug where finally blocks weren't always invoked

0.03
  - Support for 'finally' blocks (Andy Yates)
  - More documentation and tests (many people)
  - Sets $@ to the previous value at the beginning of the eval, to allow
    the capture of an error stack when calling die.

0.02
  - Doc fixes from chromatic
  - Various minor fixes from Adam Kennedy
  - Additional documentation and code clarifications
  - 5.005_04 compatibility

0.01
  - Initial release