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