From: Jesse Luehrs Date: Thu, 23 Jan 2014 01:30:47 +0000 (-0500) Subject: packaging stuff X-Git-Tag: Try-Tiny-0.19~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=027bdf22b5a19632b086419e3bac63506a4ead98;p=p5sagit%2FTry-Tiny.git packaging stuff --- diff --git a/.travis.yml b/.travis.yml index e9f133b..655229f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,8 +7,8 @@ perl: - "5.12" - "5.10" install: - - cpanm -q --notest Dist::Zilla - - dzil authordeps --missing | cpanm -q --notest - - dzil listdeps --author --missing | cpanm -q --notest + - cpanm -q --notest Dist::Zilla || (cat /home/travis/.cpanm/build.log; false) + - dzil authordeps --missing | cpanm -q --notest || (cat /home/travis/.cpanm/build.log; false) + - dzil listdeps --author --missing | cpanm -q --notest || (cat /home/travis/.cpanm/build.log; false) script: - dzil test --all diff --git a/Changes b/Changes index db47026..5b594f5 100644 --- a/Changes +++ b/Changes @@ -31,47 +31,47 @@ Revision history for Try-Tiny - warn loudly on exceptions in finally() blocks - dzilify -0.12 +0.12 2013-01-02 - doc fixes -0.11 +0.11 2011-08-30 - fix broken dist -0.10 +0.10 2011-04-27 - clarify some docs -0.09 +0.09 2010-11-28 - don't index Try::Tiny::ScopeGuard -0.08 +0.08 2010-11-28 - fix require vs use issue in blead (RT63410) -0.07 +0.07 2010-10-21 - allow multiple finally blocks - pass the error, if any, to finally blocks when called -0.06 +0.06 2010-05-27 - in t/given_when.t use a plan instead of done_testing for more backwards compatibility -0.05 +0.05 2010-05-26 - Documentation fixes and clarifications -0.04 +0.04 2010-01-22 - Restore list context propagation for catch blocks - Fix a bug where finally blocks weren't always invoked -0.03 +0.03 2010-01-22 - 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 +0.02 2009-09-02 - Doc fixes from chromatic - Various minor fixes from Adam Kennedy - Additional documentation and code clarifications - 5.005_04 compatibility -0.01 +0.01 2009-08-31 - Initial release diff --git a/dist.ini b/dist.ini index 4ed975c..88d73bd 100644 --- a/dist.ini +++ b/dist.ini @@ -5,7 +5,7 @@ license = MIT copyright_holder = Yuval Kogman [@DOY] -:version = 0.12 +:version = 0.14 dist = Try-Tiny repository = github authority = cpan:NUFFIN diff --git a/t/named.t b/t/named.t index 32fb83c..6629884 100644 --- a/t/named.t +++ b/t/named.t @@ -11,7 +11,7 @@ BEGIN { plan tests => 4; } -BEGIN { use_ok 'Try::Tiny' } +use Try::Tiny; my $name; try {