From: Dave Rolsky Date: Fri, 3 Jul 2009 02:22:48 +0000 (-0500) Subject: Add changes for 0.89 X-Git-Tag: 0.89~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f144093a0cdc83ed4f29c47a963fd1df6beb116c;p=gitmo%2FClass-MOP.git Add changes for 0.89 --- diff --git a/Changes b/Changes index bf288f9..2441a16 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,13 @@ Revision history for Perl extension Class-MOP. 0.89 + * 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)