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