foo
Stevan Little [Mon, 9 Apr 2007 16:37:12 +0000 (16:37 +0000)]
Changes
MANIFEST
README
lib/Moose.pm

diff --git a/Changes b/Changes
index ae41aff..7a46307 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension Moose
 
+0.21
+    * Moose::Meta::Role
+      - fixed issue where custom attribute metaclasses
+        where not handled correctly in roles
+        - added tests for this
+
 0.20 Friday, April 6th, 2007
     >> I messed up the SKIP logic in one test
        so this release is just to fix that.
index 7ea63df..2e06a03 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -92,6 +92,7 @@ t/103_subclass_use_base_bug.t
 t/104_inline_reader_bug.t
 t/105_module_refresh_compat.t
 t/106_handles_foreign_class_bug.t
+t/107_custom_attr_meta_with_roles.t
 t/201_example.t
 t/202_example_Moose_POOP.t
 t/203_example.t
diff --git a/README b/README
index 522f817..7d0d1c4 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Moose version 0.20
+Moose version 0.21
 ===========================
 
 See the individual module documentation for more information
index 0d58601..3907975 100644 (file)
@@ -4,7 +4,7 @@ package Moose;
 use strict;
 use warnings;
 
-our $VERSION   = '0.20';
+our $VERSION   = '0.21';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Scalar::Util 'blessed', 'reftype';