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