Add release date
[gitmo/MooseX-ClassAttribute.git] / Changes
1 0.11   2010-02-09
2
3 - Roles can now have class attributes, which will be fully initialized when
4   the role is applied to a class.
5
6 - Many modules have been renamed from MooseX::ClassAttribute::Role::Meta::* to
7   MooseX::ClassAttribute::Trait::*.
8
9 - Deprecated the get_class_attribute_map method.
10
11 - Added a version number to every .pm file.
12
13
14 0.10   2009-08-26
15
16 - Fixed to make triggers work with Moose 0.89+, and made triggers pass the old
17   attribute value when appropriate just like non-class attributes.
18
19
20 0.09   2009-07-09
21
22 - An attribute with a builder that wasn't also lazy caused an
23   exception when the attribute's accessor was called. Reported by
24   Josh.
25
26
27 0.08   2009-04-07
28
29 - Make this module work with Moose 0.73_01+.
30
31 - Deprecated compute_all_applicable_class_attributes. Use
32   get_all_class_attributes instead.
33
34
35 0.07   2008-11-10
36
37 - Fixed a bug where class attributes did not honor the
38   Class::MOP::Attribute properly, so things that used it directly
39   failed. This bug could be tickled by using certain
40   MooseX::AttributeHelpers attribute metaclasses with a class
41   attribute. Fixed by Shawn Moore.
42
43
44 0.06   2008-09-06
45
46 - No code changes, just added a missing prereq for
47   MooseX::AttributeHelpers.
48
49
50 0.05   2008-09-05
51
52 * Totally rewritten as proper meta classes, so it supports
53   introspection and all that good stuff. This breaks some old code
54   because there is no longer a "containing class" for class
55   attributes.
56
57
58 0.04   2008-01-21
59
60 - An internals change to make this class work with Moose 0.34.
61
62
63 0.03   2007-12-08
64
65 - Split main functionality out of sugar sub class_has(), into
66   process_class_attribute(). This makes it easier to create attributes
67   on behalf of other classes.
68
69
70 0.02   2007-11-25
71
72 - Inherit from Exporter, rather than trying to import its
73   import(). Unfortunately, older Exporters as shipped with Perl 5.6.x
74   only allow subclassing.
75
76
77 0.01   2007-11-24
78
79 - First version, released on an unsuspecting world.