Fix epic fail, batch one
Tomas Doran [Sun, 6 Dec 2009 11:00:53 +0000 (11:00 +0000)]
Changes
Makefile.PL
lib/Catalyst/Devel.pm
lib/Catalyst/Helper.pm

diff --git a/Changes b/Changes
index 89cac19..4ae69aa 100644 (file)
--- 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
index 0ffa8b7..a094cf0 100644 (file)
@@ -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';
 
index 69b34b8..b0630d1 100644 (file)
@@ -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;
index 2866e46..195af7d 100644 (file)
@@ -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