From: John Napiorkowski Date: Wed, 8 Jun 2016 15:37:42 +0000 (-0500) Subject: set new version for release X-Git-Tag: 5.90105~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=fd1fe4c73777eee8036e059ac19d51997f28b5d7 set new version for release --- diff --git a/Changes b/Changes index 95255b3..d812bc6 100644 --- a/Changes +++ b/Changes @@ -6,9 +6,9 @@ that we compose just once at setup time (performance optimization). Also added a debug screen at startup to display composed classes to help with debugging. - Fixed a regressed caused by the changes we made to the way ->state works so that - now when you forward to an action and that action throws and exception, $c->state + now when you forward to an action and that action throws an exception, $c->state is set to 0, instead of the value of the exeption (this is to be as indicated by - the documentation). + the documentation). (cventers++ for reported bug and test case). 5.90104 - 2016-04-04 - Merged pull request #131, fix for noisy debug logs when used type constraints diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 24ecb73..cdca151 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -204,7 +204,7 @@ sub composed_stats_class { __PACKAGE__->_encode_check(Encode::FB_CROAK | Encode::LEAVE_SRC); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.90104'; +our $VERSION = '5.90105'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases sub import { diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 835066b..b96ec09 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008003; } # Remember to update this in Catalyst as well! -our $VERSION = '5.90104'; +our $VERSION = '5.90105'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases =head1 NAME