changelog on it
Stevan Little [Fri, 15 Feb 2008 18:03:25 +0000 (18:03 +0000)]
Changes
lib/Moose/Meta/Attribute.pm
t/020_attributes/019_attribute_lazy_initializer.t

diff --git a/Changes b/Changes
index c4379ab..c781160 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,12 @@
 Revision history for Perl extension Moose
 
 0.38
+    * Moose::Meta::Attribute 
+      - fixed initializer to correctly do 
+        type checking and coercion in the 
+        callback 
+        - added tests for this
+
     * t/
       - fixed some finicky tests (thanks to konobi)
 
index fa3db88..952da9b 100644 (file)
@@ -9,7 +9,7 @@ use Carp         'confess';
 use Sub::Name    'subname';
 use overload     ();
 
-our $VERSION   = '0.20';
+our $VERSION   = '0.21';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Moose::Meta::Method::Accessor;
index 40dbe54..6f89493 100644 (file)
@@ -150,8 +150,3 @@ dies_ok {
     Fail::Bar->new(foo => 10)
 } '... this fails, because initializer returns a bad type';
 
-
-
-
-
-