From: Shawn M Moore Date: Wed, 5 Mar 2008 16:42:22 +0000 (+0000) Subject: 0.06 release X-Git-Tag: 0.09_02~15 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Singleton.git;a=commitdiff_plain;h=b1411a85d10099907c0ab3417a702a83ef4eb449 0.06 release --- diff --git a/ChangeLog b/ChangeLog index 46f07f2..fc99329 100644 --- 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 --- 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 +AND PATCHES FROM + Ricardo SIGNES + + Dave Rolsky + COPYRIGHT AND LICENSE Copyright 2007 Shawn M Moore. diff --git a/lib/MooseX/Singleton.pm b/lib/MooseX/Singleton.pm index 34291a8..281487a 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.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 Edebolaz@gmail.comE Ricardo SIGNES Erjbs@cpan.orgE +Dave Rolsky Eautarch@urth.orgE + =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.