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