bump version to 0.63
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Parameterized.pm
index 668a9db..42b949e 100644 (file)
@@ -6,8 +6,9 @@ use metaclass;
 
 use Scalar::Util 'blessed';
 use Moose::Util::TypeConstraints;
+use Moose::Meta::TypeConstraint::Parameterizable;
 
-our $VERSION   = '0.59';
+our $VERSION   = '0.63';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -56,9 +57,9 @@ sub compile_type_constraint {
           . $self->parent->name . " doesn't subtype or coerce from a parameterizable type.");
 }
 
-sub create_childtype {
+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;
@@ -86,7 +87,7 @@ Moose::Meta::TypeConstraint::Parameterized - Higher Order type constraints for M
 
 =item B<equals>
 
-=item B<create_childtype>
+=item B<create_child_type>
 
 =back