From: Stevan Little Date: Thu, 31 May 2007 04:16:15 +0000 (+0000) Subject: 0.22 X-Git-Tag: 0_23~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=db53853c6e04f25ce99fda9c35cc9ec5c2b4ebea;p=gitmo%2FMoose.git 0.22 --- diff --git a/Changes b/Changes index abca9e7..3d102b9 100644 --- a/Changes +++ b/Changes @@ -1,10 +1,10 @@ Revision history for Perl extension Moose -0.22 +0.22 Thurs. May 31, 2007 * Moose::Util::TypeConstraints - - fix for prototype undecl issue when type constraint utils loaded - before consumers (e.g. Moose::Meta::Attribute) by predeclaring - prototypes in TC utils + - fix for prototype undeclared issue when Moose::Util::TypeConstraints + loaded before consumers (e.g. Moose::Meta::Attribute) by predeclaring + prototypes for functions - added the ClassName type constraint, this checks for strings which will respond true to ->isa(UNIVERSAL). - added tests and docs for this diff --git a/lib/Moose/Util/TypeConstraints.pm b/lib/Moose/Util/TypeConstraints.pm index 61531cb..223b83f 100644 --- a/lib/Moose/Util/TypeConstraints.pm +++ b/lib/Moose/Util/TypeConstraints.pm @@ -9,7 +9,7 @@ use Scalar::Util 'blessed', 'reftype'; use B 'svref_2object'; use Sub::Exporter; -our $VERSION = '0.12'; +our $VERSION = '0.13'; our $AUTHORITY = 'cpan:STEVAN'; # Prototyped subs must be predeclared because we have a circular dependency