X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FTypeConstraint%2FRole.pm;h=4730810f0c8e432814ad36e219f0e4891f8cbe3b;hb=aead17e74252e3884f9f8e39912ca98fdf4b4dd5;hp=09cd625042439b71c1143bdb3a6b2d872f9212ed;hpb=2fb4885ef74bc342a049b54d8b89a2eb40685248;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/TypeConstraint/Role.pm b/lib/Moose/Meta/TypeConstraint/Role.pm index 09cd625..4730810 100644 --- a/lib/Moose/Meta/TypeConstraint/Role.pm +++ b/lib/Moose/Meta/TypeConstraint/Role.pm @@ -7,7 +7,7 @@ use metaclass; use Scalar::Util 'blessed'; use Moose::Util::TypeConstraints (); -our $VERSION = '0.60'; +our $VERSION = '0.62'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; @@ -97,7 +97,7 @@ sub is_subtype_of { sub create_child_type { my ($self, @args) = @_; - return Moose::meta::TypeConstraint->new(@args, parent => $self); + return Moose::Meta::TypeConstraint->new(@args, parent => $self); } 1;