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