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