[Bast-commits] r8956 - SQL-Abstract/1.x/trunk

ribasushi at dev.catalyst.perl.org ribasushi at dev.catalyst.perl.org
Wed Mar 10 11:42:44 GMT 2010


Author: ribasushi
Date: 2010-03-10 11:42:44 +0000 (Wed, 10 Mar 2010)
New Revision: 8956

Modified:
   SQL-Abstract/1.x/trunk/Changes
   SQL-Abstract/1.x/trunk/Makefile.PL
Log:
Shuffle dependencies a bit more

Modified: SQL-Abstract/1.x/trunk/Changes
===================================================================
--- SQL-Abstract/1.x/trunk/Changes	2010-03-10 09:24:49 UTC (rev 8955)
+++ SQL-Abstract/1.x/trunk/Changes	2010-03-10 11:42:44 UTC (rev 8956)
@@ -2,6 +2,8 @@
 
     - 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)
 ----------------------------

Modified: SQL-Abstract/1.x/trunk/Makefile.PL
===================================================================
--- SQL-Abstract/1.x/trunk/Makefile.PL	2010-03-10 09:24:49 UTC (rev 8955)
+++ SQL-Abstract/1.x/trunk/Makefile.PL	2010-03-10 11:42:44 UTC (rev 8956)
@@ -2,9 +2,9 @@
 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 at wiger.org>';
 
@@ -12,12 +12,11 @@
 
 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';
 




More information about the Bast-commits mailing list