diff --git a/CHANGES.txt b/CHANGES.txt index ce30278b5a698bf2684ceaa9b21e7f8d98738123_Q0hBTkdFUy50eHQ=..45b33ff64d5ebc53b3677f8274a9cb354c0ab507_Q0hBTkdFUy50eHQ= 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,2 +1,7 @@ +Version 3.0.4 released 2013-01-02 + +* MSVC compatibility for Python 3.3 + https://github.com/simplejson/simplejson/pull/47 + Version 3.0.3 released 2013-01-01 @@ -1,8 +6,10 @@ Version 3.0.3 released 2013-01-01 -* Fixes for bugs introduced in 3.0.2, MSVC compatibility, and - Python 2.5 compatibility - +* Fixes for bugs introduced in 3.0.2 +* Fixes for Python 2.5 compatibility +* MSVC compatibility for Python 2.x + https://github.com/simplejson/simplejson/pull/46 + Version 3.0.2 released 2013-01-01 * THIS VERSION HAS BEEN REMOVED diff --git a/conf.py b/conf.py index ce30278b5a698bf2684ceaa9b21e7f8d98738123_Y29uZi5weQ==..45b33ff64d5ebc53b3677f8274a9cb354c0ab507_Y29uZi5weQ== 100644 --- a/conf.py +++ b/conf.py @@ -44,7 +44,7 @@ # The short X.Y version. version = '3.0' # The full version, including alpha/beta/rc tags. -release = '3.0.3' +release = '3.0.4' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: diff --git a/setup.py b/setup.py index ce30278b5a698bf2684ceaa9b21e7f8d98738123_c2V0dXAucHk=..45b33ff64d5ebc53b3677f8274a9cb354c0ab507_c2V0dXAucHk= 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ DistutilsPlatformError IS_PYPY = hasattr(sys, 'pypy_translation_info') -VERSION = '3.0.3' +VERSION = '3.0.4' DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python" LONG_DESCRIPTION = open('README.rst', 'r').read() diff --git a/simplejson/__init__.py b/simplejson/__init__.py index ce30278b5a698bf2684ceaa9b21e7f8d98738123_c2ltcGxlanNvbi9fX2luaXRfXy5weQ==..45b33ff64d5ebc53b3677f8274a9cb354c0ab507_c2ltcGxlanNvbi9fX2luaXRfXy5weQ== 100644 --- a/simplejson/__init__.py +++ b/simplejson/__init__.py @@ -99,7 +99,7 @@ Expecting property name: line 1 column 2 (char 2) """ from __future__ import absolute_import -__version__ = '3.0.3' +__version__ = '3.0.4' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',