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