add missing parent dependency, released new Catalyst-Devel
Marcus Ramberg [Mon, 7 Apr 2008 10:30:52 +0000 (10:30 +0000)]
Changes
lib/Catalyst/Devel.pm
lib/Catalyst/Helper.pm

diff --git a/Changes b/Changes
index 9292bd9..9556cb1 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,7 @@
 This file documents the revision history for Perl extension Catalyst-Devel.
 
-
+1.05   2008-04-07 11:55:00
+        - Add missing parent dependency to created projects.
 1.04   2008-04-06 16:04:00
         - Update default actions in Root.pm
         - Patch Helper.pm so Module::Pluggable::Object ignores emacs temp
index 23eaac1..ff155d4 100644 (file)
@@ -3,7 +3,7 @@ package Catalyst::Devel;
 use strict;
 use warnings;
 
-our $VERSION             = '1.04';
+our $VERSION             = '1.05';
 our $CATALYST_SCRIPT_GEN = 31;
 
 =head1 NAME
index c3870b1..1835038 100644 (file)
@@ -739,6 +739,7 @@ requires 'Catalyst::Runtime' => '[% catalyst_version %]';
 requires 'Catalyst::Plugin::ConfigLoader';
 requires 'Catalyst::Plugin::Static::Simple';
 requires 'Catalyst::Action::RenderView';
+requires 'parent';
 requires 'YAML'; # This should reflect the config file format you've chosen
                  # See Catalyst::Plugin::ConfigLoader for supported formats
 catalyst;