0.06 release
Shawn M Moore [Wed, 5 Mar 2008 16:42:22 +0000 (16:42 +0000)]
ChangeLog
README
lib/MooseX/Singleton.pm

index 46f07f2..fc99329 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,15 +1,14 @@
 Revision history for Perl extension MooseX-Singleton
 
-0.06
-
-               - singleton objects were broken when made_immutable (Dave Rolsky)
+0.06 2008-03-05
+    - singleton objects were broken when made_immutable (Dave Rolsky)
 
 0.05 2008-02-03
-               - avoid re-BUILD-ing existing singleton objects
+    - avoid re-BUILD-ing existing singleton objects (rjbs)
 
 0.04 2008-01-27
-               - exception when ->new called with args and instance already init'd (rjbs)
-               - added ->initialize method to remove any ambiguity with ->new (rjbs)
+    - exception when ->new called with args and instance already init'd (rjbs)
+    - added ->initialize method to remove any ambiguity with ->new (rjbs)
 
 0.03 2007-12-16
     - reimplementation as a metaclass (Sartak)
diff --git a/README b/README
index 76812b7..bd70c6e 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     MooseX::Singleton - turn your Moose class into a singleton
 
 VERSION
-    Version 0.03, released 16 Dec 07
+    Version 0.06, released 05 Mar 08
 
 SYNOPSIS
         package MyApp;
@@ -57,6 +57,11 @@ AUTHOR
 SOME CODE STOLEN FROM
     Anders Nor Berle <debolaz@gmail.com>
 
+AND PATCHES FROM
+    Ricardo SIGNES <rjbs@cpan.org>
+
+    Dave Rolsky <autarch@urth.org>
+
 COPYRIGHT AND LICENSE
     Copyright 2007 Shawn M Moore.
 
index 34291a8..281487a 100644 (file)
@@ -3,7 +3,7 @@ use Moose;
 use MooseX::Singleton::Object;
 use MooseX::Singleton::Meta::Class;
 
-our $VERSION = 0.05;
+our $VERSION = 0.06;
 
 sub import {
     my $caller = caller;
@@ -29,7 +29,7 @@ MooseX::Singleton - turn your Moose class into a singleton
 
 =head1 VERSION
 
-Version 0.04, released 03 Feb 08
+Version 0.06, released 05 Mar 08
 
 =head1 SYNOPSIS
 
@@ -96,9 +96,11 @@ Anders Nor Berle E<lt>debolaz@gmail.comE<gt>
 
 Ricardo SIGNES E<lt>rjbs@cpan.orgE<gt>
 
+Dave Rolsky E<lt>autarch@urth.orgE<gt>
+
 =head1 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.