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