From: Karen Etheridge Date: Mon, 22 Jul 2013 15:34:15 +0000 (-0700) Subject: dep on Exporter 5.57 (RT#87131) X-Git-Tag: v1.003002~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cc15434fcb28de3640e235b300d89971320929cc;p=gitmo%2FRole-Tiny.git dep on Exporter 5.57 (RT#87131) --- diff --git a/Changes b/Changes index 31ef0e3..1224a09 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for Role-Tiny + - add explicit dependency on the version of Exporter that added 'import' + 1.003001 2013-07-14 - fix test accidentally requiring Class::Method::Modifiers diff --git a/Makefile.PL b/Makefile.PL index 4239cb9..0b79b06 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -16,6 +16,7 @@ WriteMakefile( NAME => 'Role::Tiny', VERSION_FROM => 'lib/Role/Tiny.pm', PREREQ_PM => { + Exporter => '5.57', ($] >= 5.010 ? () : ('MRO::Compat' => 0)), ($mymeta_works ? () : (%BUILD_DEPS)), },