From: Dave Rolsky Date: Tue, 7 Apr 2009 16:12:14 +0000 (+0000) Subject: require latest Moose X-Git-Tag: 0.08~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-StrictConstructor.git;a=commitdiff_plain;h=3fdb2537231b23a1629574b87efea1bd36c15461 require latest Moose --- diff --git a/Build.PL b/Build.PL index cab726c..7e6ecbd 100644 --- a/Build.PL +++ b/Build.PL @@ -8,7 +8,7 @@ use Module::Build; my $builder = Module::Build->new ( module_name => 'MooseX::StrictConstructor', license => 'perl', - requires => { 'Moose' => '0.73_01', + requires => { 'Moose' => '0.74', 'Test::More' => '0', }, create_makefile_pl => 'passthrough', diff --git a/lib/MooseX/StrictConstructor.pm b/lib/MooseX/StrictConstructor.pm index 4b3bb62..54a1001 100644 --- a/lib/MooseX/StrictConstructor.pm +++ b/lib/MooseX/StrictConstructor.pm @@ -6,8 +6,7 @@ use warnings; our $VERSION = '0.08'; $VERSION = eval $VERSION; -use Class::MOP (); -use Moose 0.73_01 (); +use Moose 0.74 (); use Moose::Exporter; use Moose::Util::MetaRole; use MooseX::StrictConstructor::Role::Object;