Revision history for Perl extension MooseX-Singleton
+0.07 2008-03-07
+ - bump Moose dep to 0.37 because that's when we got make_immutable (Sartak)
+
0.06 2008-03-05
- singleton objects were broken when made_immutable (Dave Rolsky)
name 'MooseX-Singleton';
all_from 'lib/MooseX/Singleton.pm';
-requires 'Moose' => '0.28';
+requires 'Moose' => '0.37';
build_requires 'Test::More';
build_requires 'Test::Exception';
MooseX::Singleton - turn your Moose class into a singleton
VERSION
- Version 0.06, released 05 Mar 08
+ Version 0.07, released 07 Mar 08
SYNOPSIS
package MyApp;
Dave Rolsky <autarch@urth.org>
COPYRIGHT AND LICENSE
- Copyright 2007 Shawn M Moore.
+ Copyright 2007, 2008 Shawn M Moore.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
use MooseX::Singleton::Object;
use MooseX::Singleton::Meta::Class;
-our $VERSION = 0.06;
+our $VERSION = 0.07;
sub import {
my $caller = caller;
=head1 VERSION
-Version 0.06, released 05 Mar 08
+Version 0.07, released 07 Mar 08
=head1 SYNOPSIS