From: Florian Ragwitz Date: Fri, 21 Aug 2009 16:13:05 +0000 (+0000) Subject: Version 5.80008. X-Git-Tag: 5.80008^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=455b342ec12a7689dfa9aae0dd096d5cc1f9242b Version 5.80008. --- diff --git a/Changes b/Changes index 618d39d..84b0a2a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ # This file documents the revision history for Perl extension Catalyst. +5.80008 2009-08-21 17:47:30 + Bug fixes: - Fix replace_constructor warning to actually work if you make your application class immutable without that option. @@ -17,7 +19,7 @@ - Make Catalyst::Engine write at least once when finalizing the response body from a filehandle, even if the write is empty. This avoids fail when trying to send out an empty response body from a filehandle. - - Catalyst::Engine::HTTP - Accept a fully qualified absolute URI in the + - Catalyst::Engine::HTTP - Accept a fully qualified absolute URI in the Request-URI of the Request-Line Refactoring / cleanups: diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index e30d38e..8c891e5 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -79,7 +79,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.80007'; +our $VERSION = '5.80008'; { my $dev_version = $VERSION =~ /_\d{2}$/; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index de3552e..0b35d2d 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008006; } # Remember to update this in Catalyst as well! -our $VERSION='5.80007'; +our $VERSION='5.80008'; $VERSION = eval $VERSION;