Fix my writing
[gitmo/MooseX-ClassAttribute.git] / Changes
1 0.23   2011-02-13
2
3 - Fixed a bug where applying a role with class attributes didn't record the
4   role as actually being applied in the meta class (or role) to which it was
5   applied. Reported by Karen Etheridge. RT #59610.
6
7 - Applying multiple roles to a class lost all class attributes from those
8   roles. Fixed by Andrew Rodland. RT #59572.
9
10
11 0.22   2011-02-02
12
13 - Explicitly require namespace::clean 0.20 to avoid some bad interactions
14   between namespace::clean and Package::Stash.
15
16
17 0.21   2010-10-29
18
19 - Switch from Test::Exception to Test::Fatal.
20
21
22 0.20   2010-10-07
23
24 - A test file tried to load MooseX::Role::Parameterized, which was not listed
25   as a dep. Reported by Andreas Koenig. RT #61957.
26
27
28 0.19   2010-10-06
29
30 - Removed references to MooseX::ClassAttribute::Meta::Method::Accessor, which
31   was removed in 0.18. This caused lots of test failures if you hadn't
32   installed a previous version of this distribution.
33
34
35 0.18   2010-10-05
36
37 - Changes to work with (and require) Moose 1.15.
38
39
40 0.17   2010-09-26
41
42 - Changes to work with (and require) Moose 1.09.
43
44
45 0.16   2010-07-15
46
47 - More warnings fixes for next Moose release.
48
49 - Fix bad repo metadata.
50
51
52 0.15   2010-07-14
53
54 - Fix bad uri for bugtracker in metadata
55
56
57 0.14   2010-07-14
58
59 - Use modern Moose APIs, to avoid warnings with the next Moose release.
60
61
62 0.13   2010-02-11
63
64 - Fixed tests that failed if you had an older version of
65   MooseX::AttributeHelpers installed.
66
67
68 0.12   2010-02-10
69
70 - Fixed so that applying a role with class attributes to an instance works
71   with Moose 0.98.
72
73
74 0.11   2010-02-09
75
76 - Roles can now have class attributes, which will be fully initialized when
77   the role is applied to a class.
78
79 - Many modules have been renamed from MooseX::ClassAttribute::Role::Meta::* to
80   MooseX::ClassAttribute::Trait::*.
81
82 - Deprecated the get_class_attribute_map method.
83
84 - Added a version number to every .pm file.
85
86
87 0.10   2009-08-26
88
89 - Fixed to make triggers work with Moose 0.89+, and made triggers pass the old
90   attribute value when appropriate just like non-class attributes.
91
92
93 0.09   2009-07-09
94
95 - An attribute with a builder that wasn't also lazy caused an
96   exception when the attribute's accessor was called. Reported by
97   Josh.
98
99
100 0.08   2009-04-07
101
102 - Make this module work with Moose 0.73_01+.
103
104 - Deprecated compute_all_applicable_class_attributes. Use
105   get_all_class_attributes instead.
106
107
108 0.07   2008-11-10
109
110 - Fixed a bug where class attributes did not honor the
111   Class::MOP::Attribute properly, so things that used it directly
112   failed. This bug could be tickled by using certain
113   MooseX::AttributeHelpers attribute metaclasses with a class
114   attribute. Fixed by Shawn Moore.
115
116
117 0.06   2008-09-06
118
119 - No code changes, just added a missing prereq for
120   MooseX::AttributeHelpers.
121
122
123 0.05   2008-09-05
124
125 * Totally rewritten as proper meta classes, so it supports
126   introspection and all that good stuff. This breaks some old code
127   because there is no longer a "containing class" for class
128   attributes.
129
130
131 0.04   2008-01-21
132
133 - An internals change to make this class work with Moose 0.34.
134
135
136 0.03   2007-12-08
137
138 - Split main functionality out of sugar sub class_has(), into
139   process_class_attribute(). This makes it easier to create attributes
140   on behalf of other classes.
141
142
143 0.02   2007-11-25
144
145 - Inherit from Exporter, rather than trying to import its
146   import(). Unfortunately, older Exporters as shipped with Perl 5.6.x
147   only allow subclassing.
148
149
150 0.01   2007-11-24
151
152 - First version, released on an unsuspecting world.