bump version to 1.12
[gitmo/Moose.git] / lib / Moose / Meta / Attribute / Native / Trait.pm
index a97e3f0..aa400df 100644 (file)
@@ -3,7 +3,7 @@ package Moose::Meta::Attribute::Native::Trait;
 use Moose::Role;
 use Moose::Util::TypeConstraints;
 
-our $VERSION   = '0.93_01';
+our $VERSION   = '1.12';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -28,8 +28,8 @@ has 'method_constructors' => (
         my $method_provider = $self->method_provider->meta;
         return +{
             map {
-                $_ => $method_provider->get_method($_)
-            } $method_provider->get_method_list
+                $_->name => $_
+            } $method_provider->_get_local_methods
         };
     },
 );