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