X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Changes;h=ae9d3620cab5200dc763118e6687a4569186de56;hb=860f85abed70a4947fb698784aa94252324d770d;hp=f3aa82178c40e3a264087fd13941082cbd7c4ea6;hpb=a4bb317200403742305b36bb18db254967d2a798;p=gitmo%2FClass-MOP.git diff --git a/Changes b/Changes index f3aa821..ae9d362 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,33 @@ Revision history for Perl extension Class-MOP. +0.79 + * Class::MOP::Class + * Class::MOP::Instance + - Reblessing into a package that supports overloading wasn't + properly adding overload magic to the object due to a bug + in (at least) 5.8.8. We now use $_[1] directly which seems + to set the magic properly. (Sartak) + +0.78 Mon, February 23, 2009 + * No changes from 0.77_01 + +0.77_01 Sun, February 22, 2009 + * Everything + - This package now requires its XS components. Not using + Sub::Name lead to different behavior and bugginess in the pure + Perl version of the code. A Moose test would fail when run + against the pure Perl version of this code. + + * Class::MOP::Instance + - The inline_* methods now quote attribute names themselves, and + don't expect to receive a quoted value. + + +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 @@ -7,12 +35,22 @@ Revision history for Perl extension Class-MOP. * 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 + - Disable deprecated get_all_package_symbols in list + context. (Florian Ragwitz) + + * Makefile.PL + - Make sure we generate a BSD-compatible Makefile (Florian Ragwitz) -0.76 Thu, January 22, 2008 + * Class::MOP::Class + - The misspelled "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