Inline DESTROY even without DEMOLISH methods
[gitmo/Moose.git] / Changes
diff --git a/Changes b/Changes
index 9cadfa7..0bdc83b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,11 +1,36 @@
 Also see Moose::Manual::Delta for more details of, and workarounds
 for, noteworthy changes.
 
-    * Moose::Meta::Class
-      - Fix metaclass incompatibility errors when extending a vanilla perl
-        class which isa Moose class with a metaclass role applied (t0m)
+0.80 ???
+
+    * Moose::Manual::FAQ 
+      - Add FAQ about the coercion change from 0.76 because it came 
+        up three times today (perigrin)
+        - Win doy $10 dollars because Sartak didn't think anybody 
+          would document this fast enough (perigrin)
+    * Moose::Meta::Method::Destructor
+        - Inline a DESTROY method even if there are no DEMOLISH methods to
+          prevent unnecessary introspection in Moose::Object::DEMOLISHALL
+
+0.79 Wed, May 13, 2009
+    * Tests
+      - More fixes for Win32 problems. Reported by Robert Krimen.
+
+    * Moose::Object
+      - The DEMOLISHALL method could still blow up in some cases
+        during global destruction. This method has been made more
+        resilient in the face of global destruction's random garbage
+        collection order.
+
+    * Moose::Exporter
+      - If you "also" a module that isn't loaded, the error message
+        now acknowledges that (Sartak)
 
-0.78
+    * Moose
+      - When your ->meta method does not return a Moose::Meta::Class,
+        the error message gave the wrong output (Sartak)
+
+0.78 Tue, May 12, 2009
     * Moose::Cookbook::FAQ and Moose::Cookbook::WTF
       - Merged these documents into what is now Moose::Manual::FAQ
 
@@ -28,6 +53,18 @@ for, noteworthy changes.
       - Track the Role::Application objects created during class-role
         consumption (Sartak)
 
+    * Moose::Meta::Class
+      - Fix metaclass incompatibility errors when extending a vanilla perl
+        class which isa Moose class with a metaclass role applied (t0m)
+
+    * Moose::Meta::Role
+      - Add a role-combination hook, _role_for_combination, for the
+        benefit of MooseX::Role::Parameterized (Sartak)
+
+    * Tests
+      - Some tests were failing on Win32 because they explicit checked
+        warning output for newlines. Reported by Nickolay Platonov.
+
 0.77 Sat, May 2, 2009
     * Moose::Meta::Role
       - Add explicit use of Devel::GlobalDestruction and Sub::Name