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