From: Tomas Doran Date: Tue, 16 Aug 2011 08:03:22 +0000 (+0100) Subject: Version 1.34 X-Git-Tag: 1.34^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Devel.git;a=commitdiff_plain;h=727f14e9fa8282583d39b78df321f0db7f4e614d Version 1.34 --- diff --git a/Changes b/Changes index 87602bd..a5afbd4 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ This file documents the revision history for Perl extension Catalyst-Devel. +1.34 2011-09-16 09:02:00 + - Bump required version of Catalyst to 5.9 + - Merge psgi support. catalyst.pl will now generate a default + myapp.psgi file with the default middlewares applied. - Fix scripts being generated mode 0700, rather than 0755 - Fix duplicate 'use Test::More' statement in generated components. - Fix Pod for catalyst_ignore function in Module::Install::Catalyst diff --git a/Makefile.PL b/Makefile.PL index 0d74cd7..e3b05be 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -12,7 +12,7 @@ requires 'MooseX::Emulate::Class::Accessor::Fast'; requires 'File::ShareDir'; requires 'namespace::clean'; requires 'namespace::autoclean'; -requires 'Catalyst' => '5.80015'; +requires 'Catalyst' => '5.90001'; requires 'Catalyst::Action::RenderView' => '0.10'; requires 'Catalyst::Plugin::Static::Simple' => '0.28'; requires 'Catalyst::Plugin::ConfigLoader' => '0.30'; diff --git a/lib/Catalyst/Devel.pm b/lib/Catalyst/Devel.pm index 79cc461..6f2a7eb 100644 --- a/lib/Catalyst/Devel.pm +++ b/lib/Catalyst/Devel.pm @@ -4,7 +4,7 @@ use strict; use warnings; # Change Catalyst::Helper also. -our $VERSION = '1.33'; +our $VERSION = '1.34'; our $CATALYST_SCRIPT_GEN = 40; $VERSION = eval $VERSION; diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index e5574c8..a5cf5a2 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -19,7 +19,7 @@ use namespace::autoclean; with 'MooseX::Emulate::Class::Accessor::Fast'; # Change Catalyst/Devel.pm also -our $VERSION = '1.33'; +our $VERSION = '1.34'; my %cache;