require Moose 0.26 0.03
Dave Rolsky [Tue, 20 Nov 2007 22:12:27 +0000 (22:12 +0000)]
Build.PL
Changes
lib/MooseX/StrictConstructor.pm

index a4bfcc7..5710f77 100644 (file)
--- 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 (file)
--- 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.
index 8f905ba..d4f16e5 100644 (file)
@@ -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;