Version 5.89000 5.89000
Florian Ragwitz [Mon, 24 Jan 2011 10:50:18 +0000 (10:50 +0000)]
This is a trial release from the psgi branch.

Changes
lib/Catalyst.pm
lib/Catalyst/Runtime.pm

diff --git a/Changes b/Changes
index 9076eb7..fa94b38 100644 (file)
--- 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:
index 5a34cc2..58d79eb 100644 (file)
@@ -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 ) = @_;
index dc1c673..6fa696a 100644 (file)
@@ -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