Add Moose to prereqs
Dave Rolsky [Thu, 15 Nov 2007 18:37:42 +0000 (18:37 +0000)]
Build.PL
Changes

index b80eaa7..87bb208 100644 (file)
--- 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 (file)
--- 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.