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