Checking in changes prior to tagging of version 0.40_04. Changelog diff is:
[gitmo/Mouse.git] / lib / Mouse / Util.pm
index d117bd2..5f3df61 100644 (file)
@@ -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