Remove explicit $VERSION
[gitmo/MooseX-ClassAttribute.git] / Changes
CommitLineData
2903ee03 10.13 2010-02-11
2
3- Fixed tests that failed if you had an older version of
4 MooseX::AttributeHelpers installed.
5
6
40935001 70.12 2010-02-10
8
9- Fixed so that applying a role with class attributes to an instance works
10 with Moose 0.98.
11
12
119b0ff4 130.11 2010-02-09
e527a2ea 14
15- Roles can now have class attributes, which will be fully initialized when
16 the role is applied to a class.
17
04b89789 18- Many modules have been renamed from MooseX::ClassAttribute::Role::Meta::* to
19 MooseX::ClassAttribute::Trait::*.
20
21- Deprecated the get_class_attribute_map method.
22
e49a5022 23- Added a version number to every .pm file.
24
e527a2ea 25
8207dfe7 260.10 2009-08-26
27
28- Fixed to make triggers work with Moose 0.89+, and made triggers pass the old
29 attribute value when appropriate just like non-class attributes.
30
31
8a86e910 320.09 2009-07-09
33
34- An attribute with a builder that wasn't also lazy caused an
05e2588c 35 exception when the attribute's accessor was called. Reported by
36 Josh.
8a86e910 37
38
f90a1d73 390.08 2009-04-07
b64c8efa 40
b0e6dc02 41- Make this module work with Moose 0.73_01+.
b64c8efa 42
43- Deprecated compute_all_applicable_class_attributes. Use
44 get_all_class_attributes instead.
45
46
bb7b1e1a 470.07 2008-11-10
48
49- Fixed a bug where class attributes did not honor the
50 Class::MOP::Attribute properly, so things that used it directly
51 failed. This bug could be tickled by using certain
52 MooseX::AttributeHelpers attribute metaclasses with a class
53 attribute. Fixed by Shawn Moore.
54
55
b2e0e01e 560.06 2008-09-06
57
58- No code changes, just added a missing prereq for
59 MooseX::AttributeHelpers.
60
61
620.05 2008-09-05
ba0d667d 63
64* Totally rewritten as proper meta classes, so it supports
65 introspection and all that good stuff. This breaks some old code
66 because there is no longer a "containing class" for class
67 attributes.
68
69
fab23ffc 700.04 2008-01-21
71
72- An internals change to make this class work with Moose 0.34.
73
74
8d655404 750.03 2007-12-08
76
77- Split main functionality out of sugar sub class_has(), into
78 process_class_attribute(). This makes it easier to create attributes
79 on behalf of other classes.
80
81
d48c186f 820.02 2007-11-25
83
84- Inherit from Exporter, rather than trying to import its
85 import(). Unfortunately, older Exporters as shipped with Perl 5.6.x
86 only allow subclassing.
87
88
cdd206de 890.01 2007-11-24
4dee0fd3 90
d48c186f 91- First version, released on an unsuspecting world.