Shuffle dependencies a bit more
Peter Rabbitson [Wed, 10 Mar 2010 11:42:44 +0000 (11:42 +0000)]
Changes
Makefile.PL

diff --git a/Changes b/Changes
index 50a6a94..4198ed1 100644 (file)
--- 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)
 ----------------------------
index b9162bf..ee502d9 100644 (file)
@@ -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 <nate@wiger.org>';
 
@@ -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';