From: Tomas Doran Date: Sat, 30 Jun 2012 15:57:52 +0000 (+0100) Subject: Version 5.90015 X-Git-Tag: 5.90015^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9a8a62f6343357bf667685341e602df287ae9dad;hp=e087c8e3f02b66f398b5e75b76586d4d20841ff9;p=catagits%2FCatalyst-Runtime.git Version 5.90015 --- diff --git a/Changes b/Changes index dc6c44c..02cb8cb 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,6 @@ # This file documents the revision history for Perl extension Catalyst. +5.90015 - 2012-06-30 16:57:00 - Fix $c->finalize_headers getting called twice. RT#78090 - Fix test fails in Catalyst-Plugin-Session-State-Cookie. RT#76179 - Fix test fails in Catalyst-Plugin-StackTrace diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 0e15f5b..7009a53 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.90014'; +our $VERSION = '5.90015'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index f079d05..f786e0d 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.90014'; +our $VERSION = '5.90015'; =head1 NAME