adding in some basic change info
Stevan Little [Fri, 5 Oct 2007 13:33:25 +0000 (13:33 +0000)]
Changes
lib/MooseX/Storage.pm
lib/MooseX/Storage/Format/JSON.pm

diff --git a/Changes b/Changes
index 2ac55c0..5f833dc 100644 (file)
--- 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
index 3dffa54..5c73ec9 100644 (file)
@@ -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 E<lt>chris.prather@iinteractive.comE<gt>
 
 Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
 
+Yuval Kogman E<lt>yuval.kogman@iinteractive.comE<gt>
+
 =head1 COPYRIGHT AND LICENSE
 
 Copyright 2007 by Infinity Interactive, Inc.
index e5b4817..27dfa48 100644 (file)
@@ -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 E<lt>chris.prather@iinteractive.comE<gt>
 
 Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
 
+Yuval Kogman E<lt>yuval.kogman@iinteractive.comE<gt>
+
 =head1 COPYRIGHT AND LICENSE
 
 Copyright 2007 by Infinity Interactive, Inc.