Merge branch 'stable'
[gitmo/Class-MOP.git] / Changes
diff --git a/Changes b/Changes
index 99f1981..f8801eb 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,20 +1,59 @@
 Revision history for Perl extension Class-MOP.
 
+NEXT
+
+  [API CHANGES]
+
+  * The internal code used to generate inlined methods (accessor, constructor,
+    etc.) has been massively rewritten. MooseX modules that do inlining will
+    almost certainly need to be updated as well.
+
+  [ENHANCEMENTS]
+
+  * A lot of code related to managing methods for a class has been tweaked to
+    make it faster. This speeds up compilation time for Class::MOP and Moose,
+    as well modules which use Moose.
+
+1.12 Mon, Jan 3, 2011
+
+  * Remove usage of undocumented Package::Stash APIs from the tests. This
+    prevents the tests from failing on Package::Stash >= 0.18.
+
+1.11 Sun, Oct 31, 2010
+
+  [ENHANCEMENTS]
+
+  * Replace use of Test::Exception with Test::Fatal. (Karen Etheridge and Dave
+    Rolsky)
+
+1.10 Mon, Oct 18, 2010
+
+  [BUG FIXES]
+
+  * Lots of fixes for edge cases with anon classes. (doy)
+
+1.09 Tue, Oct 5, 2010
+
   [ENHANCEMENTS]
 
   * It's now possible to tell Class::MOP::Class->create and the metaclass
-    pragma to not install a 'meta' method into classes they manipulate. (doy)
+    pragma to not install a 'meta' method into classes they manipulate,
+    or to install one under a different name. (doy)
 
   * Reinitializing a metaclass no longer removes the existing method and
     attribute objects (it instead fixes them so they are correct for the
     reinitialized metaclass). (doy)
 
+  * All 'meta' methods created by Class::MOP are now of the class
+    Class::MOP::Method::Meta. This is overridable at the metaclass layer. (doy)
+
   [OTHER]
 
   * Use get_or_add_package_symbol when we intend for it to autovivify, in
     preparation for changes in Package::Stash. (doy)
-  * We now use Module::Install::AuthorRequires to force authors to run
-    all tests, just like we do for Moose. (sartak)
+
+  * We now use Module::Install::AuthorRequires to force authors to run all
+    tests, just like we do for Moose. (sartak)
 
 1.08 Mon, Sep 13, 2010