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