diff --git a/Changes b/Changes index dd05724..a604412 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,7 @@ 0.20 - Fixed an error in a regex when matching Synopses et al - Added (simplified) parsing of some u4x terms + - Prevent duplicate test error from Module::Install 0.19 Wed Aug 12 17:42:49 GMT 2009 - Depend on a Pod::Text::Ansi 0.04 diff --git a/Makefile.PL b/Makefile.PL index 1ae337c..14136ff 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,6 +3,11 @@ use warnings; use inc::Module::Install; use 5.006; +my $mi = '0.94'; +if ($inc::Module::Install::VERSION lt $mi) { + die "Your Module::Install is older than $mi, please upgrade it"; +} + name ('grok'); perl_version ('5.006'); author ('Hinrik Örn Sigurðsson '); @@ -31,6 +36,5 @@ test_requires ('Test::Script' => '0'); #author_requires('Test::Pod' => '0'); #author_requires('Test::Pod::Coverage' => '0'); tests_recursive(); -recursive_author_tests('xt'); WriteAll();