Changes for 0.15
[gitmo/MooseX-ClassAttribute.git] / Changes
CommitLineData
c91cf422 10.15 2010-07-14
2
3- Fix bad uri for bugtracker in metadata
4
5
e4fd69af 60.14 2010-07-14
7
8- Use modern Moose APIs, to avoid warnings with the next Moose release.
9
10
2903ee03 110.13 2010-02-11
12
13- Fixed tests that failed if you had an older version of
14 MooseX::AttributeHelpers installed.
15
16
40935001 170.12 2010-02-10
18
19- Fixed so that applying a role with class attributes to an instance works
20 with Moose 0.98.
21
22
119b0ff4 230.11 2010-02-09
e527a2ea 24
25- Roles can now have class attributes, which will be fully initialized when
26 the role is applied to a class.
27
04b89789 28- Many modules have been renamed from MooseX::ClassAttribute::Role::Meta::* to
29 MooseX::ClassAttribute::Trait::*.
30
31- Deprecated the get_class_attribute_map method.
32
e49a5022 33- Added a version number to every .pm file.
34
e527a2ea 35
8207dfe7 360.10 2009-08-26
37
38- Fixed to make triggers work with Moose 0.89+, and made triggers pass the old
39 attribute value when appropriate just like non-class attributes.
40
41
8a86e910 420.09 2009-07-09
43
44- An attribute with a builder that wasn't also lazy caused an
05e2588c 45 exception when the attribute's accessor was called. Reported by
46 Josh.
8a86e910 47
48
f90a1d73 490.08 2009-04-07
b64c8efa 50
b0e6dc02 51- Make this module work with Moose 0.73_01+.
b64c8efa 52
53- Deprecated compute_all_applicable_class_attributes. Use
54 get_all_class_attributes instead.
55
56
bb7b1e1a 570.07 2008-11-10
58
59- Fixed a bug where class attributes did not honor the
60 Class::MOP::Attribute properly, so things that used it directly
61 failed. This bug could be tickled by using certain
62 MooseX::AttributeHelpers attribute metaclasses with a class
63 attribute. Fixed by Shawn Moore.
64
65
b2e0e01e 660.06 2008-09-06
67
68- No code changes, just added a missing prereq for
69 MooseX::AttributeHelpers.
70
71
720.05 2008-09-05
ba0d667d 73
74* Totally rewritten as proper meta classes, so it supports
75 introspection and all that good stuff. This breaks some old code
76 because there is no longer a "containing class" for class
77 attributes.
78
79
fab23ffc 800.04 2008-01-21
81
82- An internals change to make this class work with Moose 0.34.
83
84
8d655404 850.03 2007-12-08
86
87- Split main functionality out of sugar sub class_has(), into
88 process_class_attribute(). This makes it easier to create attributes
89 on behalf of other classes.
90
91
d48c186f 920.02 2007-11-25
93
94- Inherit from Exporter, rather than trying to import its
95 import(). Unfortunately, older Exporters as shipped with Perl 5.6.x
96 only allow subclassing.
97
98
cdd206de 990.01 2007-11-24
4dee0fd3 100
d48c186f 101- First version, released on an unsuspecting world.