Immutable fix to work with new Class::MOP, and trailing whitespace fuckup. Doh!
[gitmo/Moose.git] / Changes
diff --git a/Changes b/Changes
index abca9e7..3e3eec6 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,10 +1,15 @@
 Revision history for Perl extension Moose
 
-0.22
+0.23
+    * Moose::Meta::Class
+      - Modify make_immutable to work with the new Class::MOP immutable
+        mechanism + POD + very basic test (groditi)
+
+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