From 8107ad7fd0bf236db7e5344b0f4ebd9d629c3dfe Mon Sep 17 00:00:00 2001 From: Dinis Date: Sat, 11 Apr 2015 02:01:49 +0100 Subject: [PATCH] Fix the Catalyst dependency version The version of the Catalyst pre-requisite module has an extra 0 which causes some build tools to fail the test and don't find a version higher than the "required". I'm aware this is a read-only repo but it's the easiest way to submit the fix. --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index 9d76326..2478d9a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -14,7 +14,7 @@ WriteMakefile( (eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()), PREREQ_PM => { "namespace::autoclean" => '0', - "Catalyst" => '5.800006', + "Catalyst" => '5.80006', "Carp::REPL" => '0', }, );