559a8b566a1f6b1029d5480745b1831a43e03343
[gitmo/MooseX-StrictConstructor.git] / Changes
1 {{$NEXT}}
2
3 0.17     2012-01-04
4
5 - Added a small optimization for an immutable constructor when used with Moose
6   2.00+. The list of valid attributes is only generated once, rather than each
7   time the constructor is run. Reported by Chip Salzenberg. RT #73664.
8
9
10 0.16     2011-04-22
11
12 - Don't wrap BUILDALL, since this breaks if the object doesn't inherit from
13   Moose::Object (doy).
14
15
16 0.15     2011-04-13
17
18 - The fix in 0.14 only worked with Moose 2.0, causing failures with earlier
19   versions.
20
21
22 0.14     2011-04-13
23
24 - Using extends caused strictness to be lost. Fixed by Karen Etheridge.
25
26
27 0.13     2011-02-22
28
29 - This release provides forward compatibility with Moose 1.99+. It will still
30   work with Moose 1.23 as well. Most of the work was done by Jesse Luehrs.
31
32
33 0.12     2010-10-29
34
35 - Switched tests to use Test::Fatal instead of Test::Exception.
36
37
38 0.11     2010-09-09
39
40 - Added a missing test dep on Test::Exception. Reported by Phillip Moore. RT
41   #61205.
42
43
44 0.10     2010-07-16
45
46 - Ignore __INSTANCE__ when passed to the constructor. Patch by Jesse
47   Luehrs. RT #59236.
48
49 - All init args are quoted in the inlined constructor.
50
51
52 0.09     2010-07-14
53
54 - Use modern Moose APIs, to avoid warnings with the next Moose release.
55
56
57 0.08     2009-04-07
58
59 - Make this module work with Moose 0.73_01+.
60
61
62 0.07     2008-09-01
63
64 - No code changes, just a stable release for Moose 0.56.
65
66
67 0.06_02  2008-08-30
68
69 * This module no longer exports Moose's sugar. Just use Moose instead.
70
71 - Various doc fixes to reflect changes since 0.06.
72
73
74 0.06_01  2008-08-30
75
76 - Rewrote this distro's functionality as roles to take advantage of
77   Moose::Util::MetaRole. Less code, plays better with other
78   extensions.
79
80
81 0.06     2008-06-27
82
83 - Changes to the immutable bits to work with the latest Moose (0.51).
84
85
86 0.05     2008-04-18
87
88 - The fix in 0.04 only worked for non-immutable classes.
89
90
91 0.04     2008-04-18
92
93 - This module did not respect the init_arg attribute setting, and used
94   the attribute name instead. Reported by Matt Trout. RT #34507.
95
96
97 0.03     2007-11-20
98
99 - Require Moose 0.26, since that's first version to offer init_meta(),
100   apparently.
101
102
103 0.02     2007-11-15
104
105 - Moose was missing from the prereq list. Reported by Slaven Rezic.
106
107 - Version 0.01 did not work after a class was made immutable.
108
109
110 0.01     2007-11-14
111
112 - First version, released on an unsuspecting world.