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