X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse.pm;h=334e8d39f3bbcec47c9676fff8a94de088497e7f;hb=36d75a0a337e5ad1d9705e9d4d290cd5157219f1;hp=a0c88d7e7f69a2fa8c4c651a9cbc8a73fa54bd0f;hpb=6423ed47a3392af0da9cd37ac8519583e51feb27;p=gitmo%2FMouse.git diff --git a/lib/Mouse.pm b/lib/Mouse.pm index a0c88d7..334e8d3 100644 --- a/lib/Mouse.pm +++ b/lib/Mouse.pm @@ -3,7 +3,7 @@ use 5.006_002; use Mouse::Exporter; # enables strict and warnings -our $VERSION = '0.40_05'; +our $VERSION = '0.40_08'; use Carp qw(confess); use Scalar::Util qw(blessed); @@ -141,7 +141,7 @@ sub init_meta { }); $meta->superclasses($base_class) - unless $class->isa($base_class); + unless $meta->superclasses; # make a class type for each Mouse class Mouse::Util::TypeConstraints::class_type($class) @@ -160,7 +160,7 @@ Mouse - Moose minus the antlers =head1 VERSION -This document describes Mouse version 0.40_05 +This document describes Mouse version 0.40_08 =head1 SYNOPSIS @@ -392,7 +392,7 @@ keywords (such as L) it will break loudly instead breaking subtly. We have a public git repository: - git clone git://jules.scsys.co.uk/gitmo/Mouse.git + git clone git://git.moose.perl.org/Mouse.git =head1 DEPENDENCIES