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