add Test::Moose to build_requires due to packaging issues on Fedora systems 0.13
Rafael Kitover [Tue, 23 Jun 2009 13:24:45 +0000 (06:24 -0700)]
Changes
Makefile.PL
lib/MooseX/Types.pm

diff --git a/Changes b/Changes
index 88b4574..368fdef 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,8 @@
+Revision history for MooseX-Types
+
+0.13    Tue Jun 23 05:46:33 PDT 2009
+        - Add Test::Moose to build_requires for Fedora
+
 0.12    Sun Jun 14 14:39:57 PDT 2009
         - fix mixing of typelibs with regular Moose classes
 
index 1509001..6a91b14 100644 (file)
@@ -11,6 +11,7 @@ all_from        q{lib/MooseX/Types.pm};
 
 build_requires  q{Test::More},                  '0.80';
 build_requires  q{FindBin},                     0;
+build_requires  q{Test::Moose},                 0;
 
 requires        q{Moose},                       '0.61';
 requires        q{Sub::Install},                '0.924';
index e51a0c0..7c9d129 100644 (file)
@@ -20,7 +20,7 @@ use Scalar::Util                      'reftype';
 use namespace::clean -except => [qw( meta )];
 
 use 5.008;
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 my $UndefMsg = q{Action for type '%s' not yet defined in library '%s'};
 
 =head1 SYNOPSIS