Forgot to update the test for the automatic set_counter method
[gitmo/MooseX-AttributeHelpers.git] / ChangeLog
CommitLineData
22d869ff 1Revision history for Perl extension MooseX-AttributeHelpers
2
96c2370b 30.11
4 - add the ability to curry method providers (thanks to jasonmay)
5
063fae5e 60.10
eef0ea50 7 - Counter: add set and allow inc and dec to accept args
063fae5e 8 - add Bool as an attribute helper (thanks to jasonmay)
9
e8013350 100.09 Sat. May, 24, 2008
11 - remove Module::Build in favor of Module::Install
12
13 * MooseX::AttributeHelpers::MethodProvider::Hash
14 - delete with multiple keys will now work (thanks to frodwith)
15
16 * MooseX::AttributeHelpers::MethodProvider::List
17 - add "join" and "elements" provided methods (thanks to Sartak)
18
19 * MooseX::AttributeHelpers::MethodProvider::Array
20 - add "splice" provided method
21
220.08 Sat. April 12, 2008
99c62fb8 23 ~~ updates copyright year on all modules ~~
24
532b802c 25 * MooseX::AttributeHelpers::MethodProvider::Hash
26 - fixed bug in non-type constraint version of set
27 method (thanks to frodwith)
28
eca30395 290.07 Tues. Jan. 1, 2008
30 * MooseX::AttributeHelpers::String
31 - Initial version
32 * MooseX::AttributeHelpers::Hash
33 - get and set now support aggregate operations
34
34e30a7e 350.06 Tues. Dec. 7, 2007
999f34a9 36 * MooseX::AttributeHelpers::Base
37 - added the &remove_accessors method to comply with the
38 Class::MOP::Attribute interface
39 - added test for this
40 - the &install_accessors method now also properly assocaites
41 the methods with the attribute, so they are accessible via
42 introspection now.
43
f9b41f2e 440.05 Sat. Nov. 24, 2007
0f31cc28 45 - update Class::MOP dependency
999f34a9 46 - hide the Moose::Meta::Attribute::Custom::* package
0f31cc28 47 declarations from search.cpan.org (when did they change
48 things to start seeing these?? *sigh*)
49
ea60939b 500.04 Fri. Nov. 23, 2007
9a976497 51 * MooseX::AttributeHelpers::Base
52 - changing this to use the new Class::MOP::Attribute
53 reader and write method ref stuff.
999f34a9 54 - fixed this to use find_or_create_type_constraint
9a976497 55 instead of trying to parse stuff on our own.
999f34a9 56
9a976497 57 * MooseX::AttributeHelpers::Collection
999f34a9 58 - this is pretty much empty subclass now cause of
9a976497 59 the find_or_create_type_constraint fix above
999f34a9 60
9a976497 61 + MooseX::AttributeHelpers::Collection::ImmutableHash
62 + MooseX::AttributeHelpers::Collection::Bag
63 - added these two new collection types
64 - added method provider roles for them
65 - added tests for them
999f34a9 66
9a976497 67 * MooseX::AttributeHelpers::MethodProvider::Hash
68 - this is now composed from the ImmutableHash
69 method provider
999f34a9 70
9a976497 71 * t/
72 - fixed the plans on all the tests
73
740.03 Mon. Sept. 17, 2007
829736f9 75 ~~ more misc. doc updates ~~
999f34a9 76
38abf787 77 * MooseX::AttributeHelpers::Counter
78 - now provides default attribute options for 'is',
79 'isa', 'provides', and 'default' if not specified.
999f34a9 80
38abf787 81 * MooseX::AttributeHelpers::Base
82 - added attribute $name to the params passed to
83 process_options_or_provides(), which gives us more
2dee86e9 84 flexibility when writing additional helpers
38abf787 85 - removed check for 'provides' and 'isa' attr
86 options before _process_options. It should be
999f34a9 87 called always.
88
b91f57af 89 * MooseX::AttributeHelpers::MethodProvider::Array
999f34a9 90 - added `delete` and `insert` methods
72a41843 91
c91a1347 920.02 Thurs. Sept. 13, 2007
93 ~~ some misc. doc updates ~~
94
457dc4fb 95 * MooseX::AttributeHelpers::Base
999f34a9 96 - now providing subrefs for the reader and writer
457dc4fb 97 methods to all the method provider constructors
98 (this should speed things up quite a bit).
99 - all method providers now use this internally
100
101 * MooseX::AttributeHelpers::Counter
999f34a9 102 - added the 'reset' method
103
457dc4fb 104 * MooseX::AttributeHelpers::Collection::Array
999f34a9 105 - Extracted the List method provider role from
457dc4fb 106 Array and made Array consume List.
107
108 + MooseX::AttributeHelpers::Collection::List
109 - created the Collection::List metaclass
999f34a9 110 derived from parts of the old Collection::Array
457dc4fb 111
5431dff2 1120.01 Mon. Aug. 13, 2007
38abf787 113 - module released to CPAN