From: Peter Rabbitson Date: Sat, 28 Apr 2012 00:26:10 +0000 (+0200) Subject: Dependency cleanup X-Git-Tag: v0.11011~20 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=860d3652c5d400f2fe4984a8b1aaf21c59269927;p=dbsrgits%2FSQL-Translator.git Dependency cleanup --- diff --git a/Changes b/Changes index 27cca39..56e7a15 100644 --- a/Changes +++ b/Changes @@ -48,6 +48,7 @@ * Fix t/17sqlfxml-producer.t failures due to whitespace differences introduced by environment config snippets (RT#70786) * Deprecate SQL::Translator::Schema::Graph and the as_graph() schema method +* Bump minimum supported perl version to 5.8.1 (mostly due to Moo) # ---------------------------------------------------------- # 0.11010 2011-10-05 diff --git a/Makefile.PL b/Makefile.PL index 924277b..a2d7410 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,24 +1,23 @@ -use inc::Module::Install 1.00; +use inc::Module::Install 1.06; use strict; use warnings; # to deal wuth x.y.z versions properly configure_requires 'ExtUtils::MakeMaker' => '6.54'; +perl_version '5.008001'; + my $deps = { requires => { 'Class::Base' => '0', 'Class::Data::Inheritable' => '0.02', 'Digest::SHA' => '0', 'Carp::Clan' => '0', - 'IO::Dir' => '0', 'IO::Scalar' => '2.110', 'Parse::RecDescent' => '1.964001', - 'Pod::Usage' => '0', 'DBI' => '0', 'File::ShareDir' => '1.0', 'File::Spec' => '0', - 'Scalar::Util' => '0', 'XML::Writer' => '0.500', 'Moo' => '0.009007', }, @@ -34,14 +33,12 @@ my $deps = { }, test_requires => { 'YAML' => '0.66', - 'File::Basename' => '0', - 'Test::More' => '0.6', + 'Test::More' => '0.88', 'Test::Differences' => '0', - 'Test::Exception' => '0', + 'Test::Exception' => '0.31', }, }; -perl_version '5.005'; name 'SQL-Translator'; author 'Ken Youens-Clark ';