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