From: Shawn M Moore Date: Fri, 7 Mar 2008 10:30:56 +0000 (+0000) Subject: Bump Moose dep to 0.37, release as 0.07 X-Git-Tag: 0.09_02~14 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=86c3868d5fa6e3f1fb4f5e85d9fbdbd3856b0641;p=gitmo%2FMooseX-Singleton.git Bump Moose dep to 0.37, release as 0.07 --- diff --git a/ChangeLog b/ChangeLog index fc99329..9355885 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 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) diff --git a/Makefile.PL b/Makefile.PL index 6b00169..80bf9db 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,7 +5,7 @@ use inc::Module::Install; 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'; diff --git a/README b/README index bd70c6e..8ab6dac 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME 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; @@ -63,7 +63,7 @@ AND PATCHES FROM Dave Rolsky 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. diff --git a/lib/MooseX/Singleton.pm b/lib/MooseX/Singleton.pm index 281487a..b6e358a 100644 --- a/lib/MooseX/Singleton.pm +++ b/lib/MooseX/Singleton.pm @@ -3,7 +3,7 @@ use Moose; use MooseX::Singleton::Object; use MooseX::Singleton::Meta::Class; -our $VERSION = 0.06; +our $VERSION = 0.07; sub import { my $caller = caller; @@ -29,7 +29,7 @@ MooseX::Singleton - turn your Moose class into a singleton =head1 VERSION -Version 0.06, released 05 Mar 08 +Version 0.07, released 07 Mar 08 =head1 SYNOPSIS