From: Stevan Little Date: Fri, 5 Oct 2007 13:33:25 +0000 (+0000) Subject: adding in some basic change info X-Git-Tag: 0_09~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Storage.git;a=commitdiff_plain;h=6c9f2c85b3cfab728c08cfcbcc577be5753b1d72 adding in some basic change info --- diff --git a/Changes b/Changes index 2ac55c0..5f833dc 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for MooseX-Storage +0.08 + * MooseX::Storage::Format::JSON + - added support to deal with utf8 strings correctly + 0.07 Thurs. Sept. 27, 2007 + MooseX::Storage::Format::Storable - this will use Storable to freeze/thaw objects diff --git a/lib/MooseX/Storage.pm b/lib/MooseX/Storage.pm index 3dffa54..5c73ec9 100644 --- a/lib/MooseX/Storage.pm +++ b/lib/MooseX/Storage.pm @@ -4,7 +4,7 @@ use Moose qw(confess); use MooseX::Storage::Meta::Attribute::DoNotSerialize; -our $VERSION = '0.07'; +our $VERSION = '0.08'; our $AUTHORITY = 'cpan:STEVAN'; sub import { @@ -257,6 +257,8 @@ Chris Prather Echris.prather@iinteractive.comE Stevan Little Estevan.little@iinteractive.comE +Yuval Kogman Eyuval.kogman@iinteractive.comE + =head1 COPYRIGHT AND LICENSE Copyright 2007 by Infinity Interactive, Inc. diff --git a/lib/MooseX/Storage/Format/JSON.pm b/lib/MooseX/Storage/Format/JSON.pm index e5b4817..27dfa48 100644 --- a/lib/MooseX/Storage/Format/JSON.pm +++ b/lib/MooseX/Storage/Format/JSON.pm @@ -7,7 +7,7 @@ no warnings 'once'; use JSON::Any; use utf8 (); -our $VERSION = '0.02'; +our $VERSION = '0.03'; our $AUTHORITY = 'cpan:STEVAN'; requires 'pack'; @@ -93,6 +93,8 @@ Chris Prather Echris.prather@iinteractive.comE Stevan Little Estevan.little@iinteractive.comE +Yuval Kogman Eyuval.kogman@iinteractive.comE + =head1 COPYRIGHT AND LICENSE Copyright 2007 by Infinity Interactive, Inc.