From: Peter Rabbitson Date: Wed, 10 Mar 2010 11:42:44 +0000 (+0000) Subject: Shuffle dependencies a bit more X-Git-Tag: v1.70~123 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=75151f36d04ceeb6bcd18af4daf155d0a1051f66;p=dbsrgits%2FSQL-Abstract.git Shuffle dependencies a bit more --- diff --git a/Changes b/Changes index 50a6a94..4198ed1 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,8 @@ Revision history for SQL::Abstract - Fixed open outer parens for a multi-line literal - Allow recursively-nested column-functions in WHERE + - Bumped minimum perl to 5.6.2 and changed tests to + rely on core dependencies revision 1.61 2010-02-05 16:28 (UTC) ---------------------------- diff --git a/Makefile.PL b/Makefile.PL index b9162bf..ee502d9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,9 +2,9 @@ use inc::Module::Install 0.79; use strict; use warnings; -use 5.006001; +use 5.006002; -perl_version '5.006001'; +perl_version '5.006002'; name 'SQL-Abstract'; author 'Nathan Wiger '; @@ -12,12 +12,11 @@ all_from 'lib/SQL/Abstract.pm'; requires 'List::Util' => 0; requires 'Scalar::Util' => 0; -requires 'Storable' => 0; -test_requires "Test::Builder" => 0; test_requires "Test::More" => 0; test_requires "Test::Exception" => 0; test_requires "Test::Warn" => 0; +test_requires "Storable" => 0; # for cloning in tests tests_recursive 't';