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