Merge branch 'topic/support_all'
Dave Rolsky [Thu, 22 Dec 2011 23:42:47 +0000 (17:42 -0600)]
Changes
dist.ini
t/17_syntax_errors.t

diff --git a/Changes b/Changes
index 3590531..2f376e2 100644 (file)
--- a/Changes
+++ b/Changes
@@ -3,6 +3,9 @@ Revision history for MooseX-Types
 {{$NEXT}}
         - Add support for qw( :all ) on MooseX::Types::Combine libraries. (kentnl)
 
+0.30    2011-09-17
+        - Fix a bug in the tests that caused failures with Moose HEAD. (doy)
+
 0.29    2011-08-20
         - Require namespace::clean 0.19. Tests fail with 0.18. Reported by
           Ruslan Zakirov. RT #67923.
index 3b9b4ea..a7e7ab4 100644 (file)
--- a/dist.ini
+++ b/dist.ini
@@ -3,7 +3,7 @@ author  = Robert "phaylon" Sedlacek <rs@474.at>
 license = Perl_5
 copyright_holder = Robert "phaylon" Sedlacek
 
-version = 0.29
+version = 0.30
 
 [NextRelease]
 format = %-7v %{yyyy-MM-dd}d
index fa6b853..bd601c3 100644 (file)
@@ -81,11 +81,11 @@ my $role_type = q{
     use MooseX::Types -declare => ['Foo'];
     use MooseX::Types::Moose 'Str';
 
-    role_type 'mtfnpy';
+    role_type 'ypnftm';
 
-    coerce mtfnpy =>
+    coerce ypnftm =>
         from Str,
-        via { bless \$_, 'mtfnpy' };
+        via { bless \$_, 'ypnftm' };
 
     1;
 };