BUGS
Stevan Little [Sat, 15 Apr 2006 20:44:14 +0000 (20:44 +0000)]
Changes
lib/Moose/Util/TypeConstraints.pm

diff --git a/Changes b/Changes
index 13da993..c20448b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -17,6 +17,16 @@ Revision history for Perl extension Moose
         it relys on the one in Moose::Object
       - added roles attribute and some methods to support 
         roles consuming roles
+    
+    * Moose
+      - Moose no longer creates a subtype for your class 
+        if a subtype of the same name already exists, this 
+        should DWIM in 99.9999% of all cases
+        
+    * Moose::Util::TypeConstraints
+      - fixed bug where incorrect subtype conflicts were 
+        being reported
+        - added tests for this
 
 0.03_02 Wed. April 12, 2006
     * Moose
index dd6b796..ff39e5b 100644 (file)
@@ -32,7 +32,7 @@ sub import {
     
     sub _dump_type_constraints {
         require Data::Dumper;        
-        Data::Dumper::Dumper \%TYPES;
+        Data::Dumper::Dumper(\%TYPES);
     }
     
     sub _create_type_constraint {