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