Fix immutability work with latest Moose (0.51), and require said Moose
[gitmo/MooseX-Singleton.git] / ChangeLog
1 Revision history for Perl extension MooseX-Singleton
2
3 0.09 2008-06-27
4     - fix immutability to work with Moose 0.51 (Dave Rolsky)
5
6 0.08 2008-05-24
7     - fix make_immutable keyword in test (Sartak)
8     - immutable singleton objects did not call triggers in the constructor (Dave Rolsky)
9     - fix immutability to actually work with modern Moose 0.41+ (Dave Rolsky)
10
11 0.07 2008-03-07
12     - bump Moose dep to 0.37 because that's when we got make_immutable (Sartak)
13
14 0.06 2008-03-05
15     - singleton objects were broken when made_immutable (Dave Rolsky)
16
17 0.05 2008-02-03
18     - avoid re-BUILD-ing existing singleton objects (rjbs)
19
20 0.04 2008-01-27
21     - exception when ->new called with args and instance already init'd (rjbs)
22     - added ->initialize method to remove any ambiguity with ->new (rjbs)
23
24 0.03 2007-12-16
25     - reimplementation as a metaclass (Sartak)
26     - initial CPAN release
27
28 0.02 2007-12-16
29     - instance and new are really the same, cleanup (Sartak)
30
31 0.01 2007-04-20
32     - initial implementation as a role (Debolaz)