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