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