Fix the instance metaclass incompatibility error to make it clear that
[gitmo/Class-MOP.git] / Changes
diff --git a/Changes b/Changes
index 03dd60f..74d36fa 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,27 @@
 Revision history for Perl extension Class-MOP.
 
+0.6?
+    * Class::MOP
+      - Class::MOP::load_class loaded modules by turning them into
+        paths, now we just use eval "require $module". This appears to
+        fix some subtle bugs related to load order in Moose. (Dave
+        Rolsky)
+
+0.64_06 Mon August 25, 2008
+    * Class::MOP (MOP.xs)
+      - Another MS VC++ fix, cannot declare a variable in the middle
+        of a scope (Taro Nishino).
+
+0.64_05 Sun August 24, 2008
+    * Class::MOP
+      - None of the dev releases actually loaded the XS properly, but
+        we silently fell back to the pure Perl version of the
+        code. (Dave Rolsky)
+
+    * Class::MOP (MOP.xs)
+      - Replaced some code that used functions not available on Visual
+        C++ with some Perl XS API bits (Dave Rolsky).
+
 0.64_04 Sat August 23, 2008
     * Class::MOP::Class
       - Workaround a bug in 5.8.1's goto sub (nothingmuch)