adding changes and fixing some version numbers and author names
Stevan Little [Wed, 16 Apr 2008 01:41:16 +0000 (01:41 +0000)]
Changes
lib/Moose/Meta/Method/Augmented.pm
lib/Moose/Meta/Method/Overriden.pm
lib/Moose/Meta/TypeConstraint/Role.pm

diff --git a/Changes b/Changes
index d41647a..41b0682 100644 (file)
--- a/Changes
+++ b/Changes
@@ -12,6 +12,12 @@ Revision history for Perl extension Moose
       as well. There will be 2 releases, and then it will
       be removed.
 
+    * Moose
+      Moose::Role
+      Moose::Meta::Class
+      - refactored the way inner and super work to avoid
+        any method/@ISA cache penalty (nothingmuch)
+
     * Moose::Meta::Class
       - fixing &new_object to make sure trigger gets the 
         coerced value (spotted by Charles Alderman on the 
@@ -28,6 +34,11 @@ Revision history for Perl extension Moose
     * Moose::Meta::Method::Destructor
       - fix typo in initialize_body method (nothingmuch)
 
+    * Moose::Meta::Method::Overriden
+      Moose::Meta::Method::Augmented
+      - moved the logic for these into their own 
+        classes (nothingmuch)
+
     * Moose::Meta::Attribute
       - inherited attributes may now be extended without 
         restriction on the type ('isa', 'does') (Sartak)
@@ -43,7 +54,7 @@ Revision history for Perl extension Moose
 
     * Moose::Util::TypeConstraints
       - &find_type_constraint now DWIMs when given an 
-        type constraint object (nothingmuch)
+        type constraint object or name (nothingmuch)
 
     * Moose::Meta::TypeConstraint
       Moose::Meta::TypeConstraint::Class
@@ -64,7 +75,8 @@ Revision history for Perl extension Moose
         - added tests for this
         
     * Moose::Meta::TypeConstraint::Enum
-      - broke this out into it's own class (nothingmuch)
+      Moose::Meta::TypeConstraint::Role
+      - broke these out into their own classes (nothingmuch)      
 
     * Moose::Cookbook::Recipe*
       - fixed references to test file locations in the POD
index 18e43ef..0ef4d34 100644 (file)
@@ -89,7 +89,7 @@ to cpan-RT.
 
 =head1 AUTHOR
 
-Stevan Little E<lt>stevan@iinteractive.comE<gt>
+Yuval Kogman E<lt>nothingmuch@cpan.orgE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
index 12bae38..9ac4d95 100644 (file)
@@ -78,7 +78,7 @@ to cpan-RT.
 
 =head1 AUTHOR
 
-Stevan Little E<lt>stevan@iinteractive.comE<gt>
+Yuval Kogman E<lt>nothingmuch@cpan.orgE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
index d92e718..40239b3 100644 (file)
@@ -7,7 +7,7 @@ use metaclass;
 use Scalar::Util 'blessed';
 use Moose::Util::TypeConstraints ();
 
-our $VERSION   = '0.02';
+our $VERSION   = '0.01';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use base 'Moose::Meta::TypeConstraint';
@@ -107,7 +107,7 @@ Moose::Meta::TypeConstraint::Role - Role/TypeConstraint parallel hierarchy
 
 =item B<new>
 
-=item B<class>
+=item B<role>
 
 =item B<hand_optimized_type_constraint>