Changelog, adjust warning text, bump versions for a dev release. The 'we do get Class...
Tomas Doran [Sun, 22 Nov 2009 13:08:47 +0000 (13:08 +0000)]
Changes
lib/Catalyst.pm
lib/Catalyst/Runtime.pm

diff --git a/Changes b/Changes
index 7f57329..44ffcb5 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,16 @@
 # This file documents the revision history for Perl extension Catalyst.
 
+5.80014_01 UNRELEASED
+
+  Bug fixes:
+   - Filehandle now forced to binmode in CGI and FastCGI engines. This appears
+     to correct some UTF-8 issues, but may break people's code which relies
+     on the old behaviour.
+
+  Refactoring / cleanups:
+   - Plugins which inherit from Catalyst::Controller or Catalyst::Component
+     are deprecated and now issue warnings.
+
 5.80014 2009-11-21 02:51:14
 
    Bug fixes:
index 6f4ce37..2c16800 100644 (file)
@@ -79,7 +79,7 @@ __PACKAGE__->stats_class('Catalyst::Stats');
 
 # Remember to update this in Catalyst::Runtime as well!
 
-our $VERSION = '5.80014';
+our $VERSION = '5.80014_01';
 
 {
     my $dev_version = $VERSION =~ /_\d{2}$/;
@@ -2587,7 +2587,8 @@ the plugin name does not begin with C<Catalyst::Plugin::>.
         my $class = ref $proto || $proto;
 
         Class::MOP::load_class( $plugin );
-        $class->log->warn( "$plugin inherits from 'Catalyst::Component' - this kind of plugins are deprecated and will not work in 5.81" ) if $plugin->isa( 'Catalyst::Component' );
+        $class->log->warn( "$plugin inherits from 'Catalyst::Component' - this is decated and will not work in 5.81" )
+            if $plugin->isa( 'Catalyst::Component' );
         $proto->_plugins->{$plugin} = 1;
         unless ($instant) {
             no strict 'refs';
index 0933fd5..d6ec44f 100644 (file)
@@ -7,7 +7,7 @@ BEGIN { require 5.008004; }
 
 # Remember to update this in Catalyst as well!
 
-our $VERSION='5.80014';
+our $VERSION='5.80014_01';
 
 $VERSION = eval $VERSION;