summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2013-01-02 11:25:43 -0800
committerBob Ippolito <bob@redivi.com>2013-01-02 11:25:43 -0800
commitbad35638105e9adc4f802c2dd515790646bb01a8 (patch)
tree9dc75454cd9d25e08d820c459e254d8b7039bbf7
parent3f2e15169e1ed408c92b526868d61a8514dd658b (diff)
downloadsimplejson-bad35638105e9adc4f802c2dd515790646bb01a8.tar.gz
bump to 3.0.4, update changes for #47v3.0.4
-rw-r--r--CHANGES.txt13
-rw-r--r--conf.py2
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
4 files changed, 13 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index d5d15ff..7a12171 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,8 +1,15 @@
+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
-* 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 0debb25..2f80e59 100644
--- a/conf.py
+++ b/conf.py
@@ -44,7 +44,7 @@ copyright = '2012, Bob Ippolito'
# 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 9e55a9b..e61bac3 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ from distutils.errors import CCompilerError, DistutilsExecError, \
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 f68f608..4455dd1 100644
--- a/simplejson/__init__.py
+++ b/simplejson/__init__.py
@@ -99,7 +99,7 @@ Using simplejson.tool from the shell to validate and pretty-print::
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',