changelog, copyright, author
[gitmo/MooseX-AttributeHelpers.git] / ChangeLog
1 Revision history for Perl extension MooseX-AttributeHelpers
2
3 0.07 Tues. Jan. 1, 2008
4     * MooseX::AttributeHelpers::String
5       - Initial version
6     * MooseX::AttributeHelpers::Hash
7       - get and set now support aggregate operations
8
9 0.06 Tues. Dec. 7, 2007
10     * MooseX::AttributeHelpers::Base
11       - added the &remove_accessors method to comply with the
12         Class::MOP::Attribute interface
13         - added test for this
14       - the &install_accessors method now also properly assocaites
15         the methods with the attribute, so they are accessible via
16         introspection now.
17
18 0.05 Sat. Nov. 24, 2007
19     - update Class::MOP dependency
20     - hide the Moose::Meta::Attribute::Custom::* package
21       declarations from search.cpan.org (when did they change
22       things to start seeing these?? *sigh*)
23
24 0.04 Fri. Nov. 23, 2007
25     * MooseX::AttributeHelpers::Base
26       - changing this to use the new Class::MOP::Attribute
27         reader and write method ref stuff.
28       - fixed this to use find_or_create_type_constraint
29         instead of trying to parse stuff on our own.
30
31     * MooseX::AttributeHelpers::Collection
32       - this is pretty much empty subclass now cause of
33         the find_or_create_type_constraint fix above
34
35     + MooseX::AttributeHelpers::Collection::ImmutableHash
36     + MooseX::AttributeHelpers::Collection::Bag
37       - added these two new collection types
38         - added method provider roles for them
39         - added tests for them
40
41     * MooseX::AttributeHelpers::MethodProvider::Hash
42       - this is now composed from the ImmutableHash
43         method provider
44
45     * t/
46       - fixed the plans on all the tests
47
48 0.03 Mon. Sept. 17, 2007
49     ~~ more misc. doc updates ~~
50
51     * MooseX::AttributeHelpers::Counter
52       - now provides default attribute options for 'is',
53       'isa', 'provides', and 'default' if not specified.
54
55     * MooseX::AttributeHelpers::Base
56       - added attribute $name to the params passed to
57         process_options_or_provides(), which gives us more
58             flexibility when writing additional helpers
59       - removed check for 'provides' and 'isa' attr
60         options before _process_options. It should be
61         called always.
62
63     * MooseX::AttributeHelpers::MethodProvider::Array
64       - added `delete` and `insert` methods
65
66 0.02 Thurs. Sept. 13, 2007
67     ~~ some misc. doc updates ~~
68
69     * MooseX::AttributeHelpers::Base
70       - now providing subrefs for the reader and writer
71         methods to all the method provider constructors
72         (this should speed things up quite a bit).
73         - all method providers now use this internally
74
75     * MooseX::AttributeHelpers::Counter
76       - added the 'reset' method
77
78     * MooseX::AttributeHelpers::Collection::Array
79       - Extracted the List method provider role from
80         Array and made Array consume List.
81
82     + MooseX::AttributeHelpers::Collection::List
83       - created the Collection::List metaclass
84         derived from parts of the old Collection::Array
85
86 0.01 Mon. Aug. 13, 2007
87     - module released to CPAN