# HG changeset patch # User Fredrik Lundh # Date 1257470312 -3600 # Node ID 78a725b0294e7c17f6996da977af9ce468fb2f4b # Parent 3bfa8cf10f8811a23a8dca44c33284b3e1fdeb38 Updated changelog. diff -r 3bfa8cf10f8811a23a8dca44c33284b3e1fdeb38 -r 78a725b0294e7c17f6996da977af9ce468fb2f4b ChangeLog --- a/ChangeLog Fri Nov 06 02:11:49 2009 +0100 +++ b/ChangeLog Fri Nov 06 02:18:32 2009 +0100 @@ -1,10 +1,11 @@ Changes in current snapshot --------------------------- - * Take default encoding into account -- if the system default encoding - is 'ascii', 'iso-8859-1', or 'utf-8', 8-bit strings will be properly - serialized as Unicode (by Fredrik Lundh) - * Minor string encoding optimizations (by Fredrik Lundh) + * Take default encoding into account when encoding 8-bit strings. + The encodings 'ascii', 'iso-8859-1', 'latin-1', 'us-ascii' and + 'utf-8' are handled with optimized code, other encodings via + Python's standard encoding machinery (Fredrik Lundh) + * Minor string and number encoding optimizations (Fredrik Lundh) Changes in version 1.0.5 ------------------------ diff -r 3bfa8cf10f8811a23a8dca44c33284b3e1fdeb38 -r 78a725b0294e7c17f6996da977af9ce468fb2f4b setup.py --- a/setup.py Fri Nov 06 02:11:49 2009 +0100 +++ b/setup.py Fri Nov 06 02:18:32 2009 +0100 @@ -3,7 +3,7 @@ from distutils.core import setup, Extension # __version__ = "1.0.5" -__version__ = "1.0.6a1-effbot" +__version__ = "1.0.6a2-effbot" macros = [('MODULE_VERSION', '%s' % __version__)]