From: Dave Rolsky Date: Thu, 15 Nov 2007 18:37:42 +0000 (+0000) Subject: Add Moose to prereqs X-Git-Tag: 0.02~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-StrictConstructor.git;a=commitdiff_plain;h=0c61e88b77a0b8537495e6bb3fb893136453b35d Add Moose to prereqs --- diff --git a/Build.PL b/Build.PL index b80eaa7..87bb208 100644 --- a/Build.PL +++ b/Build.PL @@ -6,7 +6,8 @@ use Module::Build; my $builder = Module::Build->new ( module_name => 'MooseX::StrictConstructor', license => 'perl', - requires => { 'Test::More' => 0, + requires => { 'Moose' => 0, + 'Test::More' => 0, }, create_makefile_pl => 'passthrough', create_readme => 1, diff --git a/Changes b/Changes index b1746fa..8718cec 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,8 @@ +0.02 + +- Moose was missing from the prereq list. + + 0.01 2007-11-14 -* First version, released on an unsuspecting world. +- First version, released on an unsuspecting world.