From: Dave Rolsky Date: Tue, 20 Nov 2007 22:12:27 +0000 (+0000) Subject: require Moose 0.26 X-Git-Tag: 0.03^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-StrictConstructor.git;a=commitdiff_plain;h=f65b0fb915561025b600c6f216c8f9d96c52dcdd require Moose 0.26 --- diff --git a/Build.PL b/Build.PL index a4bfcc7..5710f77 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, + requires => { 'Moose' => 0.26, 'Test::More' => 0, }, create_makefile_pl => 'passthrough', diff --git a/Changes b/Changes index 0c3ffdf..3698670 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,9 @@ +0.03 2007-11-20 + +- Require Moose 0.26, since that's first version to offer init_meta(), + apparently. + + 0.02 2007-11-15 - Moose was missing from the prereq list. Reported by Slaven Rezic. diff --git a/lib/MooseX/StrictConstructor.pm b/lib/MooseX/StrictConstructor.pm index 8f905ba..d4f16e5 100644 --- a/lib/MooseX/StrictConstructor.pm +++ b/lib/MooseX/StrictConstructor.pm @@ -3,7 +3,7 @@ package MooseX::StrictConstructor; use strict; use warnings; -our $VERSION = '0.02'; +our $VERSION = '0.03'; use Moose; use MooseX::Object::StrictConstructor;