rename changelog to Changes
[gitmo/MooseX-Singleton.git] / Changes
CommitLineData
b375b147 1Revision history for Perl extension MooseX-Singleton
2
48b8e1f7 30.26 2011-02-26
99b8e2b6 4 - This module will now work with Moose 1.9900+, but it still works with
5 older Moose as well. (Dave Rolsky)
6
7 - The test suite now uses Test::Fatal instead of Test::Exception. (Karen
8 Etheridge)
c1068a21 9
07951478 100.25 2010-08-22
4a6f19b2 11 - Fixes for latest Moose. (Dave Rolsky)
12
f943458f 130.24 2010-07-15
14 - Require Moose 0.94+. (Dave Rolsky)
15
dc7da0cb 160.23 2010-07-15
17 - Use modern Moose APIs to avoid warnings from the next Moose. (Dave
18 Rolsky)
19
94780a79 200.22 2009-12-25
21 - The ->initialize method was both broken and undocumented. RT
22 #51260. (Dave Rolsky)
23 - Updated docs to encourage use of ->instance and ->initialize, and
24 discourage calling ->new directly. Doing so may be deprecated in a
25 future release. (Dave Rolsky)
e6fd0d07 26
c77ec30d 270.21 2009-09-12
28 - Various modules in this class were trying to load the old pre-0.20
29 classes, which have all been renamed. Tests passed if you had 0.19 or
94780a79 30 earlier installed, but failed for fresh installations. (Dave Rolsky)
c77ec30d 31
6e529236 320.20 2009-09-11
33 - Converted this extension to use roles rather than metaclass
34 subclasses. This means it will cooperate with other extensions on CPAN,
c77ec30d 35 like MooseX::StrictConstructor, etc. (Dave Rolsky)
6e529236 36
67200e8c 370.19 2009-07-09
38 - Remove ambiguity about copyright holder (Sartak)
39
0659620a 400.18 2009-06-21
e6fd0d07 41 - Changes to work Moose 0.82 (Dave Rolsky)
42
7ddec692 430.17 2009-04-24
4e0dca6c 44 - Add ClassName->_clear_instance. (hdp)
03e1b8df 45
e438d5f8 460.16 2009-04-24
ea74163e 47 - Changes to keep constructor inlining working with latest Moose &
48 Class::MOP. This module will still work with any Moose from 0.74
49 on up.
e6fd0d07 50
52af2ac7 510.15 2009-04-07
513a35b3 52 - Fixed to work with Moose 0.73_01
53
e2119ce9 54 - When an object was implicitly constructed by calling
55 ClassName->attribute, it skipped the BUILD and BUILDARGS defined
56 for a class. Report and test from Josh in RT #42690. (Dave
57 Rolsky)
58
adda7954 590.14 2009-01-22
60 - Converted to use new method generation helpers in the most
61 recent Moose (0.65) and Class::MOP (Dave Rolsky)
e6fd0d07 62
6f589f06 630.13 2008-12-08
60277ca9 64 - Fixed to work with Moose 0.63
65
b264623b 660.12 2008-09-20
71e9e249 67 - Fixed to work with Moose 0.58
e6fd0d07 68
7ec24bbf 690.11 2008-09-05
70 - Fixed to work with Moose 0.57. Fixes RT #39013. Reported by Jon Swartz (Dave Rolsky)
e6fd0d07 71
39bb71dd 720.10 2008-09-01
73 - No code changes, just a stable release to go with Moose 0.56 release (Dave Rolsky)
e6fd0d07 74
f65df6a0 750.09_02 2008-08-22
76 - bumped the Moose dependency to 0.55_01 (Dave Rolsky)
77
4bd074c5 780.09_01 2008-08-21
ede8dce0 79 - fixes to work with the latest dev release of Moose - 0.55_01 (Dave Rolsky)
80
d871257e 810.09 2008-06-27
82 - fix immutability to work with Moose 0.51 (Dave Rolsky)
83
911a9dda 840.08 2008-05-24
15bb6eb9 85 - fix make_immutable keyword in test (Sartak)
86 - immutable singleton objects did not call triggers in the constructor (Dave Rolsky)
87 - fix immutability to actually work with modern Moose 0.41+ (Dave Rolsky)
5379464b 88
86c3868d 890.07 2008-03-07
15bb6eb9 90 - bump Moose dep to 0.37 because that's when we got make_immutable (Sartak)
86c3868d 91
b1411a85 920.06 2008-03-05
93 - singleton objects were broken when made_immutable (Dave Rolsky)
2b4ce4bd 94
963b26bd 950.05 2008-02-03
b1411a85 96 - avoid re-BUILD-ing existing singleton objects (rjbs)
963b26bd 97
d64d5811 980.04 2008-01-27
b1411a85 99 - exception when ->new called with args and instance already init'd (rjbs)
100 - added ->initialize method to remove any ambiguity with ->new (rjbs)
d64d5811 101
b375b147 1020.03 2007-12-16
103 - reimplementation as a metaclass (Sartak)
15bb6eb9 104 - initial CPAN release
b375b147 105
1060.02 2007-12-16
107 - instance and new are really the same, cleanup (Sartak)
108
1090.01 2007-04-20
110 - initial implementation as a role (Debolaz)