update ChangeLog, bump version to 0.20
[gitmo/MooseX-Singleton.git] / ChangeLog
CommitLineData
b375b147 1Revision history for Perl extension MooseX-Singleton
2
6e529236 30.20 2009-09-11
4 - Converted this extension to use roles rather than metaclass
5 subclasses. This means it will cooperate with other extensions on CPAN,
6 like MooseX::StrictConstructor, etc. (Dave ROlsky)
7
67200e8c 80.19 2009-07-09
9 - Remove ambiguity about copyright holder (Sartak)
10
0659620a 110.18 2009-06-21
12 - Changes to work Moose 0.82 (Dave Rolsky)
13
7ddec692 140.17 2009-04-24
4e0dca6c 15 - Add ClassName->_clear_instance. (hdp)
03e1b8df 16
e438d5f8 170.16 2009-04-24
ea74163e 18 - Changes to keep constructor inlining working with latest Moose &
19 Class::MOP. This module will still work with any Moose from 0.74
20 on up.
21
52af2ac7 220.15 2009-04-07
513a35b3 23 - Fixed to work with Moose 0.73_01
24
e2119ce9 25 - When an object was implicitly constructed by calling
26 ClassName->attribute, it skipped the BUILD and BUILDARGS defined
27 for a class. Report and test from Josh in RT #42690. (Dave
28 Rolsky)
29
adda7954 300.14 2009-01-22
31 - Converted to use new method generation helpers in the most
32 recent Moose (0.65) and Class::MOP (Dave Rolsky)
33
6f589f06 340.13 2008-12-08
60277ca9 35 - Fixed to work with Moose 0.63
36
b264623b 370.12 2008-09-20
71e9e249 38 - Fixed to work with Moose 0.58
39
7ec24bbf 400.11 2008-09-05
41 - Fixed to work with Moose 0.57. Fixes RT #39013. Reported by Jon Swartz (Dave Rolsky)
42
39bb71dd 430.10 2008-09-01
44 - No code changes, just a stable release to go with Moose 0.56 release (Dave Rolsky)
45
f65df6a0 460.09_02 2008-08-22
47 - bumped the Moose dependency to 0.55_01 (Dave Rolsky)
48
4bd074c5 490.09_01 2008-08-21
ede8dce0 50 - fixes to work with the latest dev release of Moose - 0.55_01 (Dave Rolsky)
51
d871257e 520.09 2008-06-27
53 - fix immutability to work with Moose 0.51 (Dave Rolsky)
54
911a9dda 550.08 2008-05-24
15bb6eb9 56 - fix make_immutable keyword in test (Sartak)
57 - immutable singleton objects did not call triggers in the constructor (Dave Rolsky)
58 - fix immutability to actually work with modern Moose 0.41+ (Dave Rolsky)
5379464b 59
86c3868d 600.07 2008-03-07
15bb6eb9 61 - bump Moose dep to 0.37 because that's when we got make_immutable (Sartak)
86c3868d 62
b1411a85 630.06 2008-03-05
64 - singleton objects were broken when made_immutable (Dave Rolsky)
2b4ce4bd 65
963b26bd 660.05 2008-02-03
b1411a85 67 - avoid re-BUILD-ing existing singleton objects (rjbs)
963b26bd 68
d64d5811 690.04 2008-01-27
b1411a85 70 - exception when ->new called with args and instance already init'd (rjbs)
71 - added ->initialize method to remove any ambiguity with ->new (rjbs)
d64d5811 72
b375b147 730.03 2007-12-16
74 - reimplementation as a metaclass (Sartak)
15bb6eb9 75 - initial CPAN release
b375b147 76
770.02 2007-12-16
78 - instance and new are really the same, cleanup (Sartak)
79
800.01 2007-04-20
81 - initial implementation as a role (Debolaz)