6ceeda7e098507d72239adf53993789dd8a2b455
[gitmo/MooseX-ClassAttribute.git] / Changes
1 0.18
2
3 - Changes to work with (and require) Moose 1.15.
4
5
6 0.17   2010-09-26
7
8 - Changes to work with (and require) Moose 1.09.
9
10
11 0.16   2010-07-15
12
13 - More warnings fixes for next Moose release.
14
15 - Fix bad repo metadata.
16
17
18 0.15   2010-07-14
19
20 - Fix bad uri for bugtracker in metadata
21
22
23 0.14   2010-07-14
24
25 - Use modern Moose APIs, to avoid warnings with the next Moose release.
26
27
28 0.13   2010-02-11
29
30 - Fixed tests that failed if you had an older version of
31   MooseX::AttributeHelpers installed.
32
33
34 0.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
40 0.11   2010-02-09
41
42 - Roles can now have class attributes, which will be fully initialized when
43   the role is applied to a class.
44
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
50 - Added a version number to every .pm file.
51
52
53 0.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
59 0.09   2009-07-09
60
61 - An attribute with a builder that wasn't also lazy caused an
62   exception when the attribute's accessor was called. Reported by
63   Josh.
64
65
66 0.08   2009-04-07
67
68 - Make this module work with Moose 0.73_01+.
69
70 - Deprecated compute_all_applicable_class_attributes. Use
71   get_all_class_attributes instead.
72
73
74 0.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
83 0.06   2008-09-06
84
85 - No code changes, just added a missing prereq for
86   MooseX::AttributeHelpers.
87
88
89 0.05   2008-09-05
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
97 0.04   2008-01-21
98
99 - An internals change to make this class work with Moose 0.34.
100
101
102 0.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
109 0.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
116 0.01   2007-11-24
117
118 - First version, released on an unsuspecting world.