Prepared to release 5.7000
Marcus Ramberg [Thu, 6 Jul 2006 17:51:06 +0000 (17:51 +0000)]
Changes
lib/Catalyst.pm
lib/Catalyst/Runtime.pm
script/catalyst.pl

diff --git a/Changes b/Changes
index bc00a04..3665017 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 This file documents the revision history for Perl extension Catalyst.
 
+5.7000   2006-07-06 19:42:00
+       - Further doc work.
+       - Minor code cleanups 
+       - Changed catalyst.pl to depend on Catalyst::Devel
+
 5.70_03  2006-06-28 16:42:00
         - fixup to registered plugins debug at app startup
         - refactored Catalyst::Utils::home
@@ -34,7 +39,7 @@ This file documents the revision history for Perl extension Catalyst.
         - Updated docs for Catalyst::Component
         - Separated execute and dispatch on Catalyst::Action
         - cleaned up logging and debug output
-        - minor doc fixes
+       - significant documentation revisions
         - Added warning for setup being called twice
         - Fix pod to use DBIC::Schema instead of DBIC model
         - Fix ->config failing to copy _config for subclassing
index 0698ade..fd00793 100644 (file)
@@ -61,7 +61,7 @@ __PACKAGE__->response_class('Catalyst::Response');
 
 # Remember to update this in Catalyst::Runtime as well!
 
-our $VERSION = '5.70_03';
+our $VERSION = '5.7000';
 
 sub import {
     my ( $class, @arguments ) = @_;
index 7c65922..eb5b3d2 100644 (file)
@@ -7,7 +7,7 @@ BEGIN { require 5.008001; }
 
 # Remember to update this in Catalyst as well!
 
-our $VERSION='5.70_03';
+our $VERSION='5.7000';
 
 =head1 NAME
 
index 83c4eb7..5fb8d02 100755 (executable)
@@ -3,7 +3,7 @@
 use strict;
 use Getopt::Long;
 use Pod::Usage;
-eval " use Catalyst::Helper 1.0; ";
+eval " use Catalyst::Devel 1.0; ";
 
 if ($@) {
   die <<END;