From: Dave Rolsky Date: Mon, 23 Mar 2009 18:14:34 +0000 (-0500) Subject: Add some more details to Delta for next release X-Git-Tag: 0.72_01~32 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=501db4e6bd09aaf22d41d255031e0ab01544f642;p=gitmo%2FMoose.git Add some more details to Delta for next release --- diff --git a/lib/Moose/Manual/Delta.pod b/lib/Moose/Manual/Delta.pod index 7fc59b8..8194760 100644 --- a/lib/Moose/Manual/Delta.pod +++ b/lib/Moose/Manual/Delta.pod @@ -25,6 +25,16 @@ exception. If you want an anonymous subtype do: This is related to the changes in version 0.71_01. +The C method in L is now +only usable as a class method. Previously, it worked as a class or +object method, with a different internal implementation for each +version. + +The internals of making a class immutable changed a lot in Class::MOP +0.78_02, and Moose's internals have changed along with it. The +external C<< $metaclass->make_immutable >> method still works the same +way. + =head1 Version 0.72 A mutable class accepted C<< Foo->new(undef) >> without complaint,