X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Changes;h=0af9cc099d148c5248f86b930207eb4e7604933f;hb=bd2550f8320262fe1ab10f6c0eedc960889d869f;hp=43df66c5bc740ea9ec52775d62fe232e73dd2f9e;hpb=697799c3eedcca446d79c88676136fe2d0c81a87;p=gitmo%2FClass-MOP.git diff --git a/Changes b/Changes index 43df66c..0af9cc0 100644 --- a/Changes +++ b/Changes @@ -1,16 +1,34 @@ Revision history for Perl extension Class-MOP. -NEXT +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 + + * Replace use of Test::Exception with Test::Fatal. (Karen Etheridge and Dave + Rolsky) + +1.10 Mon, Oct 18, 2010 + + * 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