X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FUtil.pm;h=5f3df61f50c9486bc60d0fd00cb3c54514522bc4;hb=refs%2Ftags%2F0.40_04;hp=d117bd25b14d340c7c0baabb6ac926cf7541a840;hpb=f48920c11c806b2a1fd60be145ff2cdf79750878;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index d117bd2..5f3df61 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -5,7 +5,7 @@ BEGIN{ # Because Mouse::Util is loaded first in all the Mouse sub-modules, # XS loader is placed here, not in Mouse.pm. - our $VERSION = '0.40_03'; + our $VERSION = '0.40_04'; my $need_pp = !!$ENV{MOUSE_PUREPERL}; @@ -75,9 +75,9 @@ BEGIN { *get_all_metaclass_names = \&Mouse::Meta::Module::get_all_metaclass_names; # is-a predicates - _generate_isa_predicate_for('Mouse::Meta::TypeConstraint' => 'is_a_type_constraint'); - _generate_isa_predicate_for('Mouse::Meta::Class' => 'is_a_metaclass'); - _generate_isa_predicate_for('Mouse::Meta::Role' => 'is_a_metarole'); + generate_isa_predicate_for('Mouse::Meta::TypeConstraint' => 'is_a_type_constraint'); + generate_isa_predicate_for('Mouse::Meta::Class' => 'is_a_metaclass'); + generate_isa_predicate_for('Mouse::Meta::Role' => 'is_a_metarole'); } @@ -334,7 +334,7 @@ Mouse::Util - Features, with or without their dependencies =head1 VERSION -This document describes Mouse version 0.40_03 +This document describes Mouse version 0.40_04 =head1 IMPLEMENTATIONS FOR