bump version and update Changes 0.07
Dave Rolsky [Mon, 10 Nov 2008 23:42:37 +0000 (23:42 +0000)]
Changes
lib/MooseX/ClassAttribute.pm

diff --git a/Changes b/Changes
index 9ead6e9..4eea10f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,12 @@
+0.07   2008-11-10
+
+- Fixed a bug where class attributes did not honor the
+  Class::MOP::Attribute properly, so things that used it directly
+  failed. This bug could be tickled by using certain
+  MooseX::AttributeHelpers attribute metaclasses with a class
+  attribute. Fixed by Shawn Moore.
+
+
 0.06   2008-09-06
 
 - No code changes, just added a missing prereq for
index 57e141b..4ebb219 100644 (file)
@@ -3,7 +3,7 @@ package MooseX::ClassAttribute;
 use strict;
 use warnings;
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 our $AUTHORITY = 'cpan:DROLSKY';
 
 use Moose ();