From: Tomas Doran Date: Wed, 3 Mar 2010 23:03:13 +0000 (+0000) Subject: Bump versions, expand somewhat on the changelog X-Git-Tag: 5.80021^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=d5c5d96fd55a31024942bd46465a8f19240a966f Bump versions, expand somewhat on the changelog --- diff --git a/Changes b/Changes index de9104c..920d745 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,10 @@ # This file documents the revision history for Perl extension Catalyst. +5.80021 2010-03-03 23:02:01 + Bug fixed: - - uri_for will now escape unsafe chars in captures and encode utf8 chars + - $c->uri_for will now escape unsafe characterss in captures + ($c->request->captures) and correctly encode utf8 charracters. 5.80020 2010-02-04 06:51:18 diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 4d53a0d..70b1469 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -78,7 +78,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.80020'; +our $VERSION = '5.80021'; our $PRETTY_VERSION = $VERSION; $VERSION = eval $VERSION; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index cc994d2..935ce79 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008004; } # Remember to update this in Catalyst as well! -our $VERSION='5.80020'; +our $VERSION='5.80021'; $VERSION = eval $VERSION;