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