From: Stevan Little Date: Mon, 9 Apr 2007 16:37:12 +0000 (+0000) Subject: foo X-Git-Tag: 0_21~21 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=492d4d76730e999dd932399e9c171508111652e9;p=gitmo%2FMoose.git foo --- diff --git a/Changes b/Changes index ae41aff..7a46307 100644 --- 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. diff --git a/MANIFEST b/MANIFEST index 7ea63df..2e06a03 100644 --- 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 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Moose version 0.20 +Moose version 0.21 =========================== See the individual module documentation for more information diff --git a/lib/Moose.pm b/lib/Moose.pm index 0d58601..3907975 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -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';