From: Tomas Doran Date: Sun, 24 Jul 2011 15:10:10 +0000 (+0100) Subject: Version 5.80033 X-Git-Tag: 5.80033^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=refs%2Ftags%2F5.80033 Version 5.80033 --- diff --git a/Changes b/Changes index 6cbe712..fe5426c 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ # This file documents the revision history for Perl extension Catalyst. +5.80033 2011-07-24 16:09:00 + Bug fixes: - Fix Catalyst::Request so that the hostname accessor is not incorrectly populated with 'localhost' if a reverse DNS lookup fails. diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 9e41ec6..fd57ca6 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.80032'; +our $VERSION = '5.80033'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index c2e2876..fc8c555 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.80032'; +our $VERSION = '5.80033'; =head1 NAME