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