Updated makefile
Sebastian Riedel [Fri, 2 Dec 2005 05:13:00 +0000 (05:13 +0000)]
Changes
Makefile.PL
lib/Catalyst.pm

diff --git a/Changes b/Changes
index 6892f4b..1d087d5 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 This file documents the revision history for Perl extension Catalyst.
 
+5.61    2005-12-02 00:00:00
+        - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
+
 5.60    2005-12-01 22:15:00
         - Fixed Path and index actions in the appclass,
           including those that attach to /
index f063c77..867326b 100644 (file)
@@ -1,5 +1,3 @@
-use inc::Module::Install;
-
 # ExtUtils::AutoInstall Bootstrap Code, version 7.
 BEGIN {
     my $p = 'ExtUtils::AutoInstall';
@@ -38,6 +36,8 @@ manually install $p $v from cpan.org first...\n";
       }
 }
 
+use inc::Module::Install;
+
 name('Catalyst');
 abstract('Catalyst Web Framework');
 author('Sebastian Riedel');
index 55f4938..ab31ad7 100644 (file)
@@ -43,7 +43,7 @@ our $DETACH    = "catalyst_detach\n";
 require Module::Pluggable::Fast;
 
 # Helper script generation
-our $CATALYST_SCRIPT_GEN = 22;
+our $CATALYST_SCRIPT_GEN = 23;
 
 __PACKAGE__->mk_classdata($_)
   for qw/components arguments dispatcher engine log dispatcher_class
@@ -54,7 +54,7 @@ __PACKAGE__->engine_class('Catalyst::Engine::CGI');
 __PACKAGE__->request_class('Catalyst::Request');
 __PACKAGE__->response_class('Catalyst::Response');
 
-our $VERSION = '5.60';
+our $VERSION = '5.61';
 
 sub import {
     my ( $class, @arguments ) = @_;