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