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