From: John Napiorkowski Date: Tue, 26 Jun 2012 14:02:18 +0000 (-0400) Subject: version bumping X-Git-Tag: 5.90014^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=f444811bb1a174c842e80bf5b9a4c24dc1a85ee0 version bumping --- diff --git a/Changes b/Changes index 8b7bf1c..68a4626 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ # This file documents the revision history for Perl extension Catalyst. +5.90014 - 2012-06-26 10:00:00 + - Fix calling finalize_headers before writing body when using $c->write / $c->res->write (fixes RT#76179). diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 403ba82..77bd1c5 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -100,7 +100,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.90013'; +our $VERSION = '5.90014'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index cb748fc..f079d05 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.90013'; +our $VERSION = '5.90014'; =head1 NAME