Doc for role_application methods
[gitmo/Moose.git] / Changes
diff --git a/Changes b/Changes
index 83db4f5..10b2191 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,7 +1,50 @@
 Also see Moose::Manual::Delta for more details of, and workarounds
 for, noteworthy changes.
 
-0.76
+0.78
+    * Moose::Cookbook::FAQ and Moose::Cookbook::WTF
+      - Merged these documents into what is now Moose::Manual::FAQ
+
+    * Moose::Unsweetened
+      - Moved to Moose::Manual::Unsweetened
+
+    * Moose::Cookbook::Basics::Recipes 9-12
+      - Renamed to be 8-11, since recipe 8 did not exist
+
+    * Moose::Exporter
+      - Make Moose::Exporter import strict and warnings into packages
+        that use it (doy)
+
+    * Moose::Object
+      - Fix DEMOLISHALL sometimes not being able to find DEMOLISH
+        methods during global destruction (doy)
+
+    * Moose::Meta::Class
+    * Moose::Meta::Role::Application::ToClass
+      - Track the Role::Application objects created during class-role
+        consumption (Sartak)
+
+0.77 Sat, May 2, 2009
+    * Moose::Meta::Role
+      - Add explicit use of Devel::GlobalDestruction and Sub::Name
+        (perigrin)
+
+    * Moose::Object
+      - Pass a boolean to DEMOLISHALL and DEMOLISH indicating whether
+        or not we are currently in global destruction (doy)
+      - Add explicit use of Devel::GlobalDestruction and Sub::Name
+        (perigrin)
+
+    * Moose::Cookbook::FAQ
+      - Reworked much of the existing content to be more useful to
+        modern Moose hackers (Sartak)
+
+    * Makefile.PL
+      - Depend on Class::MOP 0.83 instead of 0.82_01. It seems that if
+        we use a dev version number there CPAN.pm will not follow the
+        dependency.
+
+0.76 Mon, April 27, 2009
     * Moose::Meta::TypeConstraint
       - Do not run coercions in coerce() if the value already passes the type
         constraint (hdp)
@@ -11,6 +54,14 @@ for, noteworthy changes.
         an instance of the class. This should alleviate some frustrating
         forgot-to-load-my-type bugs. rt.cpan.org #44639 (Sartak)
 
+    * Moose::Meta::Role::Application::ToClass
+      - Revert the class-overrides-role warning in favor of a solution outside
+        of the Moose core (Sartak)
+
+    * Tests
+      - Make Test::Output optional again, since it's only used in a few files
+        (Sartak)
+
 0.75_01 Thu, April 23, 2009
     * Moose::Meta::Role::Application::ToClass
       - Moose now warns about each class overriding methods from roles it