From: Sebastian Riedel Date: Fri, 2 Dec 2005 05:13:00 +0000 (+0000) Subject: Updated makefile X-Git-Tag: 5.7099_04~800 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=022d1311a5927d7020a36ea25462f2f00e8bb01f Updated makefile --- diff --git a/Changes b/Changes index 6892f4b..1d087d5 100644 --- 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 / diff --git a/Makefile.PL b/Makefile.PL index f063c77..867326b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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'); diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 55f4938..ab31ad7 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -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 ) = @_;