add a version number to every file
[gitmo/MooseX-ClassAttribute.git] / Changes
CommitLineData
e527a2ea 10.11
2
3- Roles can now have class attributes, which will be fully initialized when
4 the role is applied to a class.
5
04b89789 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
e527a2ea 11
8207dfe7 120.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
8a86e910 180.09 2009-07-09
19
20- An attribute with a builder that wasn't also lazy caused an
05e2588c 21 exception when the attribute's accessor was called. Reported by
22 Josh.
8a86e910 23
24
f90a1d73 250.08 2009-04-07
b64c8efa 26
b0e6dc02 27- Make this module work with Moose 0.73_01+.
b64c8efa 28
29- Deprecated compute_all_applicable_class_attributes. Use
30 get_all_class_attributes instead.
31
32
bb7b1e1a 330.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
b2e0e01e 420.06 2008-09-06
43
44- No code changes, just added a missing prereq for
45 MooseX::AttributeHelpers.
46
47
480.05 2008-09-05
ba0d667d 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
fab23ffc 560.04 2008-01-21
57
58- An internals change to make this class work with Moose 0.34.
59
60
8d655404 610.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
d48c186f 680.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
cdd206de 750.01 2007-11-24
4dee0fd3 76
d48c186f 77- First version, released on an unsuspecting world.