From: Peter Rabbitson Date: Thu, 24 Nov 2011 11:44:58 +0000 (+0100) Subject: Fix incorrect Test::Builder dep (RT#72282) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c7bc500e2898a2e03fe69c6ad7c5785f1629d18d;p=dbsrgits%2FDBIx-Class-Historic.git Fix incorrect Test::Builder dep (RT#72282) --- diff --git a/Changes b/Changes index 0dc66eb..935f28e 100644 --- a/Changes +++ b/Changes @@ -8,6 +8,7 @@ Revision history for DBIx::Class - Throw much clearer error on incorrect inflation spec - Fix incorrect storage behavior when first call on a fresh schema is with_deferred_fk_checks + - Fix incorrect dependency on Test::Simple/Builder (RT#72282) * Misc - No longer depend on Variable::Magic now that a pure-perl diff --git a/Makefile.PL b/Makefile.PL index dc44dee..b41e281 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -32,10 +32,11 @@ my $build_requires = { my $test_requires = { 'File::Temp' => '0.22', - 'Test::Builder' => '0.33', 'Test::Exception' => '0.31', - 'Test::More' => '0.92', 'Test::Warn' => '0.21', + 'Test::More' => '0.94', + # not sure if this is necessary at all, ask schwern some day + 'Test::Builder' => '0.94', # this is already a dep of n::c, but just in case - used by t/55namespaces_cleaned.t # remove and do a manual glob-collection if n::c is no longer a dep