Makefile fixes + changes
Peter Rabbitson [Fri, 28 Aug 2009 12:09:27 +0000 (12:09 +0000)]
Changes
Makefile.PL

diff --git a/Changes b/Changes
index 54f4038..9b2e6ca 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,10 @@
 # ----------------------------------------------------------
+# 0.11002 2009-08-28
+# ----------------------------------------------------------
+* Depend on fixed Parse::RecDescent
+* Added skip-tables and skip-tables-like options to Diagram
+
+# ----------------------------------------------------------
 # 0.11001 2009-08-18
 # ----------------------------------------------------------
 * Removed last use of Readonly
index e1c14f9..2916095 100644 (file)
@@ -1,7 +1,10 @@
-use inc::Module::Install 0.89;
+use inc::Module::Install 0.91;
 use strict;
 use warnings;
 
+# to deal wuth x.y.z versions properly
+configure_requires 'ExtUtils::MakeMaker' => 6.54;
+
 my $deps = {
   requires => {
     'Class::Base'              => 0,
@@ -11,7 +14,7 @@ my $deps = {
     'Carp::Clan'               => 0,
     'IO::Dir'                  => 0,
     'IO::Scalar'               => 2.110,
-    'Parse::RecDescent'        => 1.096000,   # PBP ftw
+    'Parse::RecDescent'        => 1.962002,
     'Pod::Usage'               => 0,
     'Class::Accessor::Fast'    => 0,
     'DBI'                      => 0,
@@ -51,6 +54,7 @@ resources Ratings => 'http://cpanratings.perl.org/d/SQL-Translator';
 
 all_from    'lib/SQL/Translator.pm';
 
+
 for my $type (qw/requires recommends test_requires/) {
   no strict qw/refs/;
   my $f = \&$type;