X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse.pm;h=6a08ba6994ec115485351c94ff81dd5a27bad93e;hb=1d86420d34a7bbe8596b08035d7fb6c8c81d00a3;hp=8244532964ab5876ed89f212cebd7c80499094e8;hpb=08f7a8dbc5e48fcece4396a500d37bb2c6e45b74;p=gitmo%2FMouse.git diff --git a/lib/Mouse.pm b/lib/Mouse.pm index 8244532..6a08ba6 100644 --- a/lib/Mouse.pm +++ b/lib/Mouse.pm @@ -4,7 +4,9 @@ use warnings; use 5.006; use base 'Exporter'; -our $VERSION = '0.30'; +our $VERSION = '0.32'; + +sub moose_version(){ 0.90 } # which Mouse is a subset of use Carp 'confess'; use Scalar::Util 'blessed'; @@ -13,6 +15,7 @@ use Mouse::Util qw(load_class is_class_loaded); use Mouse::Meta::Attribute; use Mouse::Meta::Module; use Mouse::Meta::Class; +use Mouse::Meta::Role; use Mouse::Object; use Mouse::Util::TypeConstraints;