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