From: Stevan Little <stevan.little@iinteractive.com>
Date: Sat, 15 Apr 2006 20:44:14 +0000 (+0000)
Subject: BUGS
X-Git-Tag: 0_05~31
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=256903b6768472a634935d032f47d77a075c78cf;p=gitmo%2FMoose.git

BUGS
---

diff --git a/Changes b/Changes
index 13da993..c20448b 100644
--- 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
diff --git a/lib/Moose/Util/TypeConstraints.pm b/lib/Moose/Util/TypeConstraints.pm
index dd6b796..ff39e5b 100644
--- a/lib/Moose/Util/TypeConstraints.pm
+++ b/lib/Moose/Util/TypeConstraints.pm
@@ -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 {