From: Dave Rolsky Date: Sun, 31 Aug 2008 03:59:41 +0000 (+0000) Subject: require Moose 0.55_04 X-Git-Tag: 0.06_01~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-StrictConstructor.git;a=commitdiff_plain;h=a0a267952defd3397de25969ff8c2d28c8f37a2c require Moose 0.55_04 --- diff --git a/Build.PL b/Build.PL index e1fd756..8f72cd7 100644 --- a/Build.PL +++ b/Build.PL @@ -8,8 +8,8 @@ use Module::Build; my $builder = Module::Build->new ( module_name => 'MooseX::StrictConstructor', license => 'perl', - requires => { 'Moose' => 0.51, - 'Test::More' => 0, + requires => { 'Moose' => '0.55_04', + 'Test::More' => '0', }, create_makefile_pl => 'passthrough', create_readme => 1, diff --git a/lib/MooseX/StrictConstructor.pm b/lib/MooseX/StrictConstructor.pm index c2bdb35..355db06 100644 --- a/lib/MooseX/StrictConstructor.pm +++ b/lib/MooseX/StrictConstructor.pm @@ -7,7 +7,7 @@ our $VERSION = '0.06_01'; $VERSION = eval $VERSION; use Class::MOP (); -use Moose (); +use Moose 0.5504 (); use Moose::Exporter; use Moose::Util::MetaRole; use MooseX::StrictConstructor::Role::Object;