bump up Moose dep (RT#53016), release 0.21
Rafael Kitover [Thu, 24 Dec 2009 05:25:05 +0000 (00:25 -0500)]
Changes
Makefile.PL
lib/MooseX/Types.pm
lib/MooseX/Types/Base.pm
lib/MooseX/Types/CheckedUtilExports.pm
lib/MooseX/Types/Combine.pm
lib/MooseX/Types/Moose.pm
lib/MooseX/Types/TypeDecorator.pm
lib/MooseX/Types/UndefinedType.pm
lib/MooseX/Types/Util.pm
lib/MooseX/Types/Wrapper.pm

diff --git a/Changes b/Changes
index 6654ca3..444c5c9 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,10 +1,12 @@
 Revision history for MooseX-Types
 
-0.21
+
+0.21    Thu Dec 24 00:21:26 EST 2009
         - Attempting to import a non-existent type from a combined type
           library gave a very confusing error message from the
           MooseX::Types::Combined internals. Now it gives you a much more
           useful message. (Dave Rolsky)
+        - bump up Moose dep (RT#53016)
 
 0.20    Thu Sep 10 22:34:48 EDT 2009
         - fix "empty export" warning (doy).
index c8a7479..4ea151e 100644 (file)
@@ -14,7 +14,7 @@ build_requires  q{FindBin},                     0;
 build_requires  q{Test::Moose},                 0;
 build_requires  q{Test::Exception},             0;
 
-requires        q{Moose},                       '0.61';
+requires        q{Moose},                       '0.93';
 requires        q{Sub::Install},                '0.924';
 requires        q{namespace::clean},            '0.08';
 requires        q{Carp},                        0;
index e3f9a31..41222b6 100644 (file)
@@ -20,7 +20,7 @@ use Scalar::Util                      'reftype';
 use namespace::clean -except => [qw( meta )];
 
 use 5.008;
-our $VERSION = '0.20';
+our $VERSION = '0.21';
 my $UndefMsg = q{Action for type '%s' not yet defined in library '%s'};
 
 =head1 SYNOPSIS
@@ -597,6 +597,8 @@ rafl: Florian Ragwitz <rafl@debian.org>
 
 hdp: Hans Dieter Pearcey <hdp@cpan.org>
 
+autarch: Dave Rolsky <autarch@urth.org>
+
 =head1 COPYRIGHT & LICENSE
 
 Copyright (c) 2007-2009 Robert Sedlacek <rs@474.at>
index eefc022..943f5a4 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::Base;
-our $VERSION = "0.20";
+our $VERSION = "0.21";
 use Moose;
 
 =head1 NAME
index b1e6530..d959240 100644 (file)
@@ -6,7 +6,7 @@ safer for L<MooseX::Types>
 =cut
 
 package MooseX::Types::CheckedUtilExports;
-our $VERSION = "0.20";
+our $VERSION = "0.21";
 
 use strict;
 use warnings;
index 1e33a08..1ee476c 100644 (file)
@@ -5,7 +5,7 @@ MooseX::Types::Combine - Combine type libraries for exporting
 =cut
 
 package MooseX::Types::Combine;
-our $VERSION = "0.20";
+our $VERSION = "0.21";
 
 use strict;
 use warnings;
index 8c2ec23..ea86ec8 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::Moose;
-our $VERSION = "0.20";
+our $VERSION = "0.21";
 
 =head1 NAME
 
index fdfaf4d..6e71c43 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::TypeDecorator;
-our $VERSION = "0.20";
+our $VERSION = "0.21";
 
 use strict;
 use warnings;
index be35774..eb6a970 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::UndefinedType;
-our $VERSION = "0.20";
+our $VERSION = "0.21";
 
 =head1 NAME
 
index fe9bf05..bd4608c 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::Util;
-our $VERSION = "0.20";
+our $VERSION = "0.21";
 
 =head1 NAME
 
index ecc4f56..b57899f 100644 (file)
@@ -5,7 +5,7 @@ MooseX::Types::Wrapper - Wrap exports from a library
 =cut
 
 package MooseX::Types::Wrapper;
-our $VERSION = "0.20";
+our $VERSION = "0.21";
 use Moose;
 
 use Carp::Clan      qw( ^MooseX::Types );