get everything onto the same version
[gitmo/Moose.git] / lib / Moose / AttributeHelpers / Trait / Collection / List.pm
index 68566e0..36c6630 100644 (file)
@@ -2,7 +2,7 @@
 package Moose::AttributeHelpers::Trait::Collection::List;
 use Moose::Role;
 
-our $VERSION   = '0.83';
+our $VERSION   = '0.84';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -50,9 +50,9 @@ Moose::AttributeHelpers::Collection::List
       is        => 'ro',
       isa       => 'ArrayRef[Int]',
       default   => sub { [] },
-      provides  => {
-          map  => 'map_options',
-          grep => 'filter_options',
+      handles   => {
+          map_options    => 'map',
+          filter_options => 'grep',
       }
   );