no get_method_map in get_method_list
[gitmo/Class-MOP.git] / Changes
diff --git a/Changes b/Changes
index bf288f9..4bba164 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,20 @@
 Revision history for Perl extension Class-MOP.
 
-0.89
+0.90
+    * Class::MOP::Class
+    * XS
+      - Anonymous classes were not destroyed properly when they went
+        out of scope, leading to a memory leak. RT #47480 (Goro Fuji).
+
+
+0.89 Fri Jul 3, 2009
+    * Class::MOP::Class
+    * Class::MOP::Class::Immutable::Trait
+      - Made the Trait act like a role with a bunch of "around"
+        modifiers, rather than sticking it in the inheritance
+        hierarchy. This fixes various problems that caused with
+        metaclass compatibility, which broke Fey::ORM.
+
     * Class::MOP::Method
       - Allow a blessed code reference as the method body. Fixes a
         problem interaction with MooseX::Types. (ash)