moose 1.21 and 1.9 compatible
[gitmo/MooseX-ClassAttribute.git] / Changes
1 0.22   2011-02-02
2
3 - Explicitly require namespace::clean 0.20 to avoid various some bad
4   interactions between namespace::clean and Package::Stash.
5
6
7 0.21   2010-10-29
8
9 - Switch from Test::Exception to Test::Fatal.
10
11
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
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
25 0.18   2010-10-05
26
27 - Changes to work with (and require) Moose 1.15.
28
29
30 0.17   2010-09-26
31
32 - Changes to work with (and require) Moose 1.09.
33
34
35 0.16   2010-07-15
36
37 - More warnings fixes for next Moose release.
38
39 - Fix bad repo metadata.
40
41
42 0.15   2010-07-14
43
44 - Fix bad uri for bugtracker in metadata
45
46
47 0.14   2010-07-14
48
49 - Use modern Moose APIs, to avoid warnings with the next Moose release.
50
51
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
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
64 0.11   2010-02-09
65
66 - Roles can now have class attributes, which will be fully initialized when
67   the role is applied to a class.
68
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
74 - Added a version number to every .pm file.
75
76
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
83 0.09   2009-07-09
84
85 - An attribute with a builder that wasn't also lazy caused an
86   exception when the attribute's accessor was called. Reported by
87   Josh.
88
89
90 0.08   2009-04-07
91
92 - Make this module work with Moose 0.73_01+.
93
94 - Deprecated compute_all_applicable_class_attributes. Use
95   get_all_class_attributes instead.
96
97
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
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
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
121 0.04   2008-01-21
122
123 - An internals change to make this class work with Moose 0.34.
124
125
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
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
140 0.01   2007-11-24
141
142 - First version, released on an unsuspecting world.