fuckingyuval
[gitmo/MooseX-AttributeHelpers.git] / ChangeLog
1 Revision history for Perl extension MooseX-AttributeHelpers
2
3 0.08
4     ~~ updates copyright year on all modules ~~
5
6     * MooseX::AttributeHelpers::MethodProvider::Hash
7       - fixed bug in non-type constraint version of set
8         method (thanks to frodwith)
9
10 0.07 Tues. Jan. 1, 2008
11     * MooseX::AttributeHelpers::String
12       - Initial version
13     * MooseX::AttributeHelpers::Hash
14       - get and set now support aggregate operations
15
16 0.06 Tues. Dec. 7, 2007
17     * MooseX::AttributeHelpers::Base
18       - added the &remove_accessors method to comply with the
19         Class::MOP::Attribute interface
20         - added test for this
21       - the &install_accessors method now also properly assocaites
22         the methods with the attribute, so they are accessible via
23         introspection now.
24
25 0.05 Sat. Nov. 24, 2007
26     - update Class::MOP dependency
27     - hide the Moose::Meta::Attribute::Custom::* package
28       declarations from search.cpan.org (when did they change
29       things to start seeing these?? *sigh*)
30
31 0.04 Fri. Nov. 23, 2007
32     * MooseX::AttributeHelpers::Base
33       - changing this to use the new Class::MOP::Attribute
34         reader and write method ref stuff.
35       - fixed this to use find_or_create_type_constraint
36         instead of trying to parse stuff on our own.
37
38     * MooseX::AttributeHelpers::Collection
39       - this is pretty much empty subclass now cause of
40         the find_or_create_type_constraint fix above
41
42     + MooseX::AttributeHelpers::Collection::ImmutableHash
43     + MooseX::AttributeHelpers::Collection::Bag
44       - added these two new collection types
45         - added method provider roles for them
46         - added tests for them
47
48     * MooseX::AttributeHelpers::MethodProvider::Hash
49       - this is now composed from the ImmutableHash
50         method provider
51
52     * t/
53       - fixed the plans on all the tests
54
55 0.03 Mon. Sept. 17, 2007
56     ~~ more misc. doc updates ~~
57
58     * MooseX::AttributeHelpers::Counter
59       - now provides default attribute options for 'is',
60       'isa', 'provides', and 'default' if not specified.
61
62     * MooseX::AttributeHelpers::Base
63       - added attribute $name to the params passed to
64         process_options_or_provides(), which gives us more
65             flexibility when writing additional helpers
66       - removed check for 'provides' and 'isa' attr
67         options before _process_options. It should be
68         called always.
69
70     * MooseX::AttributeHelpers::MethodProvider::Array
71       - added `delete` and `insert` methods
72
73 0.02 Thurs. Sept. 13, 2007
74     ~~ some misc. doc updates ~~
75
76     * MooseX::AttributeHelpers::Base
77       - now providing subrefs for the reader and writer
78         methods to all the method provider constructors
79         (this should speed things up quite a bit).
80         - all method providers now use this internally
81
82     * MooseX::AttributeHelpers::Counter
83       - added the 'reset' method
84
85     * MooseX::AttributeHelpers::Collection::Array
86       - Extracted the List method provider role from
87         Array and made Array consume List.
88
89     + MooseX::AttributeHelpers::Collection::List
90       - created the Collection::List metaclass
91         derived from parts of the old Collection::Array
92
93 0.01 Mon. Aug. 13, 2007
94     - module released to CPAN