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