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