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