From: Brian Cassidy Date: Fri, 24 Aug 2007 18:06:26 +0000 (+0000) Subject: added prereq for catalyst 5.7008 X-Git-Tag: v0.17^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-ConfigLoader.git;a=commitdiff_plain;h=12ef2a3050686f217289ed540d4f46edf0b37fe8 added prereq for catalyst 5.7008 --- diff --git a/Changes b/Changes index 86c290e..0166ab7 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Perl extension Catalyst::Plugin::ConfigLoader. +0.17 Fri Aug 24 2007 + - Requires Catalyst::Runtime 5.7008 for env_value() + + [NOTE] + - Deprecation notices will hold for another release + 0.16 Thu Aug 23 2007 - separated out the macro expansion code into config_substitutions() (Jason Kohles) diff --git a/Makefile.PL b/Makefile.PL index 5b2a60c..2e7160b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,9 +3,9 @@ use inc::Module::Install 0.65; name 'Catalyst-Plugin-ConfigLoader'; all_from 'lib/Catalyst/Plugin/ConfigLoader.pm'; -requires 'Catalyst::Runtime'; -requires 'Data::Visitor' => '0.02'; -requires 'Config::Any' => '0.08'; +requires 'Catalyst::Runtime' => '5.7008'; # needed for env_value() +requires 'Data::Visitor' => '0.02'; +requires 'Config::Any' => '0.08'; requires 'Test::More'; diff --git a/lib/Catalyst/Plugin/ConfigLoader.pm b/lib/Catalyst/Plugin/ConfigLoader.pm index 12b1731..6755dbe 100644 --- a/lib/Catalyst/Plugin/ConfigLoader.pm +++ b/lib/Catalyst/Plugin/ConfigLoader.pm @@ -8,7 +8,7 @@ use NEXT; use Data::Visitor::Callback; use Catalyst::Utils (); -our $VERSION = '0.16'; +our $VERSION = '0.17'; =head1 NAME