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