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