From: Florian Ragwitz Date: Mon, 24 Jan 2011 10:50:18 +0000 (+0000) Subject: Version 5.89000 X-Git-Tag: 5.89000^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=refs%2Ftags%2F5.89000 Version 5.89000 This is a trial release from the psgi branch. --- diff --git a/Changes b/Changes index 9076eb7..fa94b38 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,24 @@ # This file documents the revision history for Perl extension Catalyst. +5.89000 2011-01-24 09:28:45 (TRIAL release) + + This is a development release from psgi branch of Catalyst-Runtime. + + Removed features: + + - All of the Catalyst::Engine::* namespace is now gone. Instead we only have + one Catalyst::Engine class speaking the PSGI protocol natively. Everything + the various Catalyst::Engine:: classes did before is now supposed to happen + through PSGI handlers such as Plack::Handler::FCGI, + Plack::Handler::HTTP::Server::PSGI, Plack::Handler::Apache2, and so + on. However, deployment can still work the same as it did before. The + catalyst scripts still exist and continue to work. + + If you find anything that either doesn't work anymore as it did before or + anything that could be done before with the various Catalyst::Engine:: + classes, but can't be done anymore with the single PSGI Catalyst::Engine + class, please tell us *now*. + 5.80030 2011-01-04 13:13:02 New features: diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 5a34cc2..58d79eb 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -81,7 +81,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.80030'; +our $VERSION = '5.89000'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index dc1c673..6fa696a 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.80030'; +our $VERSION = '5.89000'; =head1 NAME