Small tidiness change
[gitmo/Moose.git] / Changes
diff --git a/Changes b/Changes
index 6367829..78b6653 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,7 +1,51 @@
 Also see Moose::Manual::Delta for more details of, and workarounds
 for, noteworthy changes.
 
-0.84 Thu, Jun 25, 2009
+0.88
+    Japan Perl Association has sponsored Goro Fuji to improve
+    startup performance of Class::MOP and Moose. These enhancements
+    may break backwards compatibility if you're doing (or using)
+    complex metaprogramming, so, as always, test your code!
+    http://blog.perlassociation.org/2009/07/jpa-sponsors-moose-class-mop-work.html
+
+    * Moose::Meta::Method::Accessor
+      - No longer uses inline_slot_access in accessors, to support
+        non-lvalue-based meta instances. (sorear)
+    * Moose::Manual::Contributing
+      - Re-write the Moose::Manual::Contributing document to reflect the new
+        layout and methods of work for the Git repository. All work now should
+        be done in topic branches and reviewed by a core committer before
+        being applied to master. All releases are done by a cabal member and
+        merged from master to stable. This plan was devised by Yuval, blame
+        him. (perigrin)
+    * Moose::Meta::Role
+      - Create metaclass attributes for the different role application classes.
+        (rafl)
+    * Moose::Util::MetaRole
+      - Allow applying roles to a meta role's role application classes. (rafl)
+
+0.87 Tue Jul 7, 2009
+    * Moose::Meta::Method::Delegation
+      - Once again allow class names as well as objects for
+        delegation. This was changed in 0.86.
+
+0.86 Fri Jul 3, 2009
+    * Moose::Meta::Class::Immutable::Trait
+      - Fixes to work with the latest Class::MOP.
+
+    * Moose::Meta::Method::Delegation
+      - Delegation now dies with a more useful error message if the
+        attribute's accessor returns something defined but
+        unblessed. (hdp)
+
+0.85 Fri, Jun 26, 2009
+    * Moose::Meta::Attribute
+      - The warning for 'no associated methods' is now split out into
+        the _check_associated_methods method, so that extensions can
+        safely call 'after install_accessors => ...'. This fixes a
+        warning from MooseX::AttributeHelpers. (hdp)
+
+0.84 Fri, Jun 26, 2009
     * Moose::Role
       - has now sets definition_context for attributes defined in
         roles. (doy)
@@ -15,7 +59,7 @@ for, noteworthy changes.
       - Attribute accessors (reader, writer, accessor, predicate,
         clearer) now warn if they overwrite an existing method. (doy)
       - Attribute constructors now warn very noisily about unknown (or
-        mispelled) arguments
+        misspelled) arguments
 
     * Moose::Util::TypeConstraints
       - Deprecated the totally useless Role type name, which just
@@ -33,6 +77,10 @@ for, noteworthy changes.
       - Allow Moose::Meta::TypeConstraint::DuckType in handles, since
         it is just a list of methods (Sartak)
 
+    * Moose::Meta::Role
+      - The get_*_method_modifiers methods would die if the role had
+        no modifiers of the given type (Robert Buels).
+
 0.83 Tue, Jun 23, 2009
     * Moose::Meta::Class
       - Fix _construct_instance not setting the special __MOP__ object