0.22
Stevan Little [Thu, 31 May 2007 04:16:15 +0000 (04:16 +0000)]
Changes
lib/Moose/Util/TypeConstraints.pm

diff --git a/Changes b/Changes
index abca9e7..3d102b9 100644 (file)
--- 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
index 61531cb..223b83f 100644 (file)
@@ -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