From: Shawn M Moore Date: Wed, 18 Mar 2009 21:19:35 +0000 (-0400) Subject: Depend directly on Data::OptList X-Git-Tag: 0.72_01~65 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=28422aa4aa8d4aec4eb54c9fcbbbe0494bd0d6b6;p=gitmo%2FMoose.git Depend directly on Data::OptList --- diff --git a/Changes b/Changes index 2493181..8be7bb8 100644 --- a/Changes +++ b/Changes @@ -26,6 +26,11 @@ Revision history for Perl extension Moose - Allow a subclass to set lazy_build for an inherited attribute. (Dieter Pearcey). + * Makefile.PL + - Explicitly depend on Data::OptList. We already had this dependency + via Sub::Exporter, but since we're using it directly we're + better off with it listed. (Sartak) + 0.72 Mon, February 23, 2009 * Moose::Object * Moose::Meta::Method::Constructor diff --git a/Makefile.PL b/Makefile.PL index 85ab6b3..9032f4d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -16,6 +16,7 @@ requires 'Class::MOP' => '0.77_01'; requires 'List::MoreUtils' => '0.12'; requires 'Sub::Exporter' => '0.972'; requires 'Task::Weaken' => '0'; +requires 'Data::OptList' => '0'; test_requires 'Test::More' => '0.77'; test_requires 'Test::Exception' => '0.21';