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