Bump Moose dep to 0.37, release as 0.07
Shawn M Moore [Fri, 7 Mar 2008 10:30:56 +0000 (10:30 +0000)]
ChangeLog
Makefile.PL
README
lib/MooseX/Singleton.pm

index fc99329..9355885 100644 (file)
--- 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)
 
index 6b00169..80bf9db 100644 (file)
@@ -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 (file)
--- 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 <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.
index 281487a..b6e358a 100644 (file)
@@ -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