Release date
[gitmo/MooseX-ClassAttribute.git] / Changes
CommitLineData
973b0b62 10.18 2010-10-05
9ef90a45 2
3- Changes to work with (and require) Moose 1.15.
4
5
935982fc 60.17 2010-09-26
7
8- Changes to work with (and require) Moose 1.09.
9
10
9c33b9a6 110.16 2010-07-15
12
13- More warnings fixes for next Moose release.
14
15- Fix bad repo metadata.
16
17
c91cf422 180.15 2010-07-14
19
20- Fix bad uri for bugtracker in metadata
21
22
e4fd69af 230.14 2010-07-14
24
25- Use modern Moose APIs, to avoid warnings with the next Moose release.
26
27
2903ee03 280.13 2010-02-11
29
30- Fixed tests that failed if you had an older version of
31 MooseX::AttributeHelpers installed.
32
33
40935001 340.12 2010-02-10
35
36- Fixed so that applying a role with class attributes to an instance works
37 with Moose 0.98.
38
39
119b0ff4 400.11 2010-02-09
e527a2ea 41
42- Roles can now have class attributes, which will be fully initialized when
43 the role is applied to a class.
44
04b89789 45- Many modules have been renamed from MooseX::ClassAttribute::Role::Meta::* to
46 MooseX::ClassAttribute::Trait::*.
47
48- Deprecated the get_class_attribute_map method.
49
e49a5022 50- Added a version number to every .pm file.
51
e527a2ea 52
8207dfe7 530.10 2009-08-26
54
55- Fixed to make triggers work with Moose 0.89+, and made triggers pass the old
56 attribute value when appropriate just like non-class attributes.
57
58
8a86e910 590.09 2009-07-09
60
61- An attribute with a builder that wasn't also lazy caused an
05e2588c 62 exception when the attribute's accessor was called. Reported by
63 Josh.
8a86e910 64
65
f90a1d73 660.08 2009-04-07
b64c8efa 67
b0e6dc02 68- Make this module work with Moose 0.73_01+.
b64c8efa 69
70- Deprecated compute_all_applicable_class_attributes. Use
71 get_all_class_attributes instead.
72
73
bb7b1e1a 740.07 2008-11-10
75
76- Fixed a bug where class attributes did not honor the
77 Class::MOP::Attribute properly, so things that used it directly
78 failed. This bug could be tickled by using certain
79 MooseX::AttributeHelpers attribute metaclasses with a class
80 attribute. Fixed by Shawn Moore.
81
82
b2e0e01e 830.06 2008-09-06
84
85- No code changes, just added a missing prereq for
86 MooseX::AttributeHelpers.
87
88
890.05 2008-09-05
ba0d667d 90
91* Totally rewritten as proper meta classes, so it supports
92 introspection and all that good stuff. This breaks some old code
93 because there is no longer a "containing class" for class
94 attributes.
95
96
fab23ffc 970.04 2008-01-21
98
99- An internals change to make this class work with Moose 0.34.
100
101
8d655404 1020.03 2007-12-08
103
104- Split main functionality out of sugar sub class_has(), into
105 process_class_attribute(). This makes it easier to create attributes
106 on behalf of other classes.
107
108
d48c186f 1090.02 2007-11-25
110
111- Inherit from Exporter, rather than trying to import its
112 import(). Unfortunately, older Exporters as shipped with Perl 5.6.x
113 only allow subclassing.
114
115
cdd206de 1160.01 2007-11-24
4dee0fd3 117
d48c186f 118- First version, released on an unsuspecting world.