bump version to 1.25
[gitmo/Moose.git] / lib / Moose / Meta / Method / Meta.pm
index 94170fd..c34586e 100644 (file)
@@ -4,7 +4,7 @@ package Moose::Meta::Method::Meta;
 use strict;
 use warnings;
 
-our $VERSION   = '1.14';
+our $VERSION   = '1.25';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -24,6 +24,11 @@ sub wrap {
     return $class->Class::MOP::Method::Meta::wrap(@_);
 }
 
+sub _make_compatible_with {
+    my $self = shift;
+    return $self->Class::MOP::Method::Meta::_make_compatible_with(@_);
+}
+
 1;
 
 __END__