Fix warnings in latest Moose
[gitmo/MooseX-Emulate-Class-Accessor-Fast.git] / Changes
1           - Fix to not warn with newer versions of Moose by passing is => 'bare'
2             to process_accessors method.
3
4 0.00900    May 29, 2009
5           - Fix so that classes which implement BUILD themselves still get
6             all attributes passed to their constuctor placed into the instance
7             hash (t0m)
8
9 0.00802    Apr 23, 2009
10           - Declare test dependency on Test::Exception. Closes RT#43194. (rafl)
11           - Turn build_requires on Test::More into test_requires. (rafl)
12           - Fix doc typos in SYNOPSIS. Closes RT#40380. (rafl)
13
14 0.00801    Apr 09, 2009
15           - Make the accessor meta method class compatible with recent Moose.
16           - Stop using deprecated Moose api to avoid warnings.
17           - Bump Moose dependency to 0.74.
18
19 0.00800    Feb 03, 2009
20           - Fix assigning a list to an accessor stores a list ref
21              - tests
22           - TODO test for Class::Accessor::Chained::Fast compatibility
23
24 0.00701    Jan 02, 2009
25           - Better errors when trying to modify an immutable class
26           - Fix typo in Makefile.PL description
27           - Missing dep in Makefile.PL (rafl)
28
29 0.00700    Dec 29, 2008
30           - Creating a new accessor with the same name as an old one would
31             result in a new attribute with no reader/writer/accessor.
32             Reported by t0m
33              - tests (t0m)
34
35 0.00600    Dec 17, 2008
36           - Add test for a 'meta' accessor, which we need to treat as a
37             special case (t0m)
38           - Add test for not replacing pre-existing accessors generally,
39             which is behavior we don't want to lose (t0m)
40           - Don't use ->meta
41           - Don't use ->can
42           - Attempt to support attrs named meta with no success. test marked
43             as todo.
44
45 0.00500    Dec 9, 2008
46           - make_accessor, make_ro_accessor, make_rw_accessor
47             - tests
48
49 0.00400    Oct 28, 2008
50            - Fix bug where a bad assumption was causing us to infinitely loop
51              on badly-written code like Data::Page. (Reported by marcus)
52              - Tests for this
53              - Up Moose dep to 0.31
54
55 0.00300    Jul 30, 2008
56            - Replace around 'new' with a BUILD method. Faster and avoids Moose
57              bug with around/immutable and sub-classes. (t0m)
58
59 0.00200    Mar 28, 2008
60            - Extend BUILDALL to store constructor keys in the obj. hashref
61            - Minor fix to make sure Adopt doesn't trip PAUSE perms
62            - Bye bye auto_install.
63
64 0.00100    Mar 15, 2008
65            - Initial Release!