From: Sebastian Riedel Date: Mon, 14 Nov 2005 22:51:47 +0000 (+0000) Subject: Released 5.54 X-Git-Tag: 5.7099_04~921 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=6f006bd6fc9f85ca8a153e44a85268d5719bf50d Released 5.54 --- diff --git a/Changes b/Changes index b35d292..37dd1af 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Tis file documents the revision history for Perl extension Catalyst. +5.54 2005-11-14 22:55:00 + - Fixed a Module::Pluggable::Fast related bug + 5.53 2005-11-14 15:55:00 - Removed t/04prereq.t that was testing for non-required modules. diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 038e2cd..2d26d27 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -54,7 +54,7 @@ __PACKAGE__->engine_class('Catalyst::Engine::CGI'); __PACKAGE__->request_class('Catalyst::Request'); __PACKAGE__->response_class('Catalyst::Response'); -our $VERSION = '5.53'; +our $VERSION = '5.54'; sub import { my ( $class, @arguments ) = @_; @@ -1496,8 +1496,7 @@ qq/Couldn't instantiate component "$component", "new() didn't return a object"/ return $instance; }; - eval "package $class;\n". - q!Module::Pluggable::Fast->import( + eval "package $class;\n" . q!Module::Pluggable::Fast->import( name => '_catalyst_components', search => [ "$class\::Controller", "$class\::C",