From: Marcus Ramberg Date: Sat, 6 Jun 2009 12:41:29 +0000 (+0000) Subject: Prepare for 05 X-Git-Tag: 5.80005^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=7d665b582162163415de0d7579403218cf4e66a6;hp=c3fd63d4399bec38e1cd6ac94b4aed8ba61966b8 Prepare for 05 --- diff --git a/Changes b/Changes index c9b5bef..73321fe 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ # This file documents the revision history for Perl extension Catalyst. +5.80005 2009-06-06 14:40:00 + Behaviour changes: - Arguments ($c->req->args) in Chained dispatch are now automatically URL decoded to be consistent with Local/Path dispatch (Caelum) diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index b32c09c..b38be49 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -76,7 +76,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.80004'; +our $VERSION = '5.80005'; { my $dev_version = $VERSION =~ /_\d{2}$/; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index b83696c..fe9c57f 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008001; } # Remember to update this in Catalyst as well! -our $VERSION='5.80004'; +our $VERSION='5.80005'; $VERSION = eval $VERSION;