From: Dagfinn Ilmari Mannsåker Date: Fri, 26 Oct 2012 01:05:16 +0000 (+0100) Subject: add missing Class::Method::Modifiers dependency (RT#80310) X-Git-Tag: v1.002002~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0ee1bd42cb95cd594e777fa676e80cddc66e0393;p=gitmo%2FRole-Tiny.git add missing Class::Method::Modifiers dependency (RT#80310) --- diff --git a/Changes b/Changes index 4627c08..206062c 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ + - add missing Class::Method::Modifiers dependency (RT#80310) + 1.002001 - 2012-10-26 - t/does-Moo.t moved to 'xt' (RT#80290) - don't die when looking for 'DOES' on perl < 5.10 (RT#80402) diff --git a/Makefile.PL b/Makefile.PL index 680e5f6..af4d5be 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -16,6 +16,7 @@ WriteMakefile( NAME => 'Role::Tiny', VERSION_FROM => 'lib/Role/Tiny.pm', PREREQ_PM => { + 'Class::Method::Modifiers' => '1.10', ($] >= 5.010 ? () : ('MRO::Compat' => 0)), ($mymeta_works ? () : (%BUILD_DEPS)), },