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