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