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