bump version to 0.80
[gitmo/Moose.git] / lib / Moose / Meta / Role / Application / ToClass.pm
index f7573ab..488274a 100644 (file)
@@ -7,7 +7,7 @@ use metaclass;
 use Moose::Util  'english_list';
 use Scalar::Util 'weaken', 'blessed';
 
-our $VERSION   = '0.79';
+our $VERSION   = '0.80';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -73,7 +73,7 @@ sub check_required_methods {
 
     my $error = '';
 
-    my @conflicts = grep { $_->is_conflict } @missing;
+    my @conflicts = grep { $_->isa('Moose::Meta::Role::Method::Conflicting') } @missing;
 
     if (@conflicts) {
         my $conflict = $conflicts[0];
@@ -84,7 +84,7 @@ sub check_required_methods {
             .  $roles
             . ", the method '"
             . $conflict->name
-            . "' must be implemented by '"
+            . "' must be implemented or excluded by '"
             . $class->name
             . q{'};
     }