bump version to 0.77
[gitmo/Class-MOP.git] / Changes
diff --git a/Changes b/Changes
index 3d25dd3..c515790 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,33 @@
 Revision history for Perl extension Class-MOP.
 
-0.76 Thu, January 22, 2008
+0.77 Sat, February 14, 2009
+    * MOP.xs
+      - Avoid assertion errors on debugging perls in is_class_loaded
+        (Florian Ragwitz)
+
+    * Class::MOP
+      - Fixed various corner cases where is_class_loaded incorrectly
+        returned true for a class that wasn't really loaded. (Dave
+        Rolsky)
+
+    * Class::MOP::Class
+      - Add get_all_method_names (Sartak)
+      - Add a wrapped_method_metaclass attribute (Florian Ragwitz)
+
+    * Class::MOP::Package
+      - Disable deprecated get_all_package_symbols in list
+        context. (Florian Ragwitz)
+
+    * Makefile.PL
+      - Make sure we generate a BSD-compatible Makefile (Florian
+        Ragwitz)
+
+    * Class::MOP::Class
+      - The mispelled "check_metaclass_compatability" method we've
+        kept around for backwards compat_i_bility will be removed in a
+        near future release. You've been warned.
+
+0.76 Thu, January 22, 2009
     * Class::MOP::Method::Generated
       - Added new private methods to support code generation, which
         are being used by Moose and can be used by MooseX