bump version to 0.65
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Parameterized.pm
index d7b78c2..ec363ab 100644 (file)
@@ -6,8 +6,9 @@ use metaclass;
 
 use Scalar::Util 'blessed';
 use Moose::Util::TypeConstraints;
+use Moose::Meta::TypeConstraint::Parameterizable;
 
-our $VERSION   = '0.60';
+our $VERSION   = '0.65';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -58,7 +59,7 @@ sub compile_type_constraint {
 
 sub create_child_type {
     my ($self, %opts) = @_;
-    return Moose::Meta::TypeConstraint->new(%opts, parent => $self);
+    return Moose::Meta::TypeConstraint::Parameterizable->new(%opts, parent=>$self);
 }
 
 1;