From: Dave Rolsky <autarch@urth.org>
Date: Fri, 29 Aug 2008 17:42:27 +0000 (+0000)
Subject: Update changes for next release
X-Git-Tag: 0.55_02~5
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=23045c64103644493ab8d51e369168667fd69173;p=gitmo%2FMoose.git

Update changes for next release
---

diff --git a/Changes b/Changes
index 19e44fc..be85cda 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,6 @@
 Revision history for Perl extension Moose
 
-0.56
+0.55_02 Fri August 29, 2008
     * Makefile.PL and Moose.pm
       - explicitly require Perl 5.8.0+ (Dave Rolsky)
 
@@ -9,17 +9,26 @@ Revision history for Perl extension Moose
         found (t0m).
       
     * Moose::Meta::TypeConstraint
-      - predicate methods (equals/is_a_type_of/is_subtype_of) now 
+      - Predicate methods (equals/is_a_type_of/is_subtype_of) now
         return false if the type you specify cannot be found in the
-        type registry, rather than throwing an unhelpful and coincidental
-        exception. The behavior is now in line with to 
-        $ob->isa('DoesNotExist') (t0m).
+        type registry, rather than throwing an unhelpful and
+        coincidental exception. (t0m).
         - added docs & test for this (t0m)
     
     * Moose::Meta::TypeConstraint::Registry
       - add_type_constraint now throws an exception if a parameter is
         not supplied (t0m).
         - added docs & test for this (t0m)
+
+    * Moose::Cookbook::FAQ
+      - Added a faq entry on the difference between "role" and "trait"
+        (t0m)
+
+    * Moose::Meta::Role
+      - Fixed a bug that caused role composition to not see a required
+        method when that method was provided by another role being
+        composed at the same time. (Dave Rolsky)
+        - test and bug finding (tokuhirom)
         
 0.55_01 Wed August 20, 2008