From: Tomas Doran Date: Sun, 6 Dec 2009 11:00:53 +0000 (+0000) Subject: Fix epic fail, batch one X-Git-Tag: 1.23~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Devel.git;a=commitdiff_plain;h=efc787e1c38342241d543c3e6b359855df49d7d9 Fix epic fail, batch one --- diff --git a/Changes b/Changes index 89cac19..4ae69aa 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ This file documents the revision history for Perl extension Catalyst-Devel. + - Fix Test::More version dependency so that subtest works correctly. + - Add a $VERSION to Catalyst::Helper as PAUSE used to pull $VERSION + (i.e. 0.01) out of the app template section and use that, so we now + can't not have a version number here or it makes pause unhappy. + 1.22 2009-12-05 07:23:00 - Use MooseX::Emulate::Class::Accessor::Fast so that options supplied to ->new are put into the hash even if attributes diff --git a/Makefile.PL b/Makefile.PL index 0ffa8b7..a094cf0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -19,7 +19,7 @@ requires 'Module::Install' => '0.91'; requires 'Path::Class' => '0.09'; requires 'Template' => '2.14'; -test_requires 'Test::More' => '0.90'; +test_requires 'Test::More' => '0.94'; install_share 'share'; diff --git a/lib/Catalyst/Devel.pm b/lib/Catalyst/Devel.pm index 69b34b8..b0630d1 100644 --- a/lib/Catalyst/Devel.pm +++ b/lib/Catalyst/Devel.pm @@ -3,6 +3,7 @@ package Catalyst::Devel; use strict; use warnings; +# Change Catalyst::Helper also. our $VERSION = '1.22'; $VERSION = eval $VERSION; our $CATALYST_SCRIPT_GEN = 40; diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index 2866e46..195af7d 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -17,6 +17,9 @@ use namespace::autoclean; with 'MooseX::Emulate::Class::Accessor::Fast'; +# Change Catalyst/Devel.pm also +our $VERSION = '1.22'; + my %cache; =head1 NAME