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