From: John Napiorkowski Date: Wed, 20 Jul 2016 19:12:24 +0000 (-0500) Subject: Merge pull request #144 from melmothx/unicode-exceptions X-Git-Tag: 5.90111^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=638b81e604fe6ea5584c48ad4d1c92025770267f;hp=7374d0c8847553be888890636435e142608fff48 Merge pull request #144 from melmothx/unicode-exceptions Document and test what handle_unicode_exception is supposed to return --- diff --git a/Changes b/Changes index 2732ae1..15a2c58 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ # This file documents the revision history for Perl extension Catalyst. -TBD +5.90110 - 2016-07-20 - Better catching of HTTP style exceptions so that you can reliable use one to override many core method. - Documention on better ways to catch and handle Unicode errors diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 880bf40..41be157 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.90106'; +our $VERSION = '5.90110'; $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 0fc8934..3e9f952 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.90106'; +our $VERSION = '5.90110'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases =head1 NAME