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