summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2015-09-04 10:35:32 -0700
committerBob Ippolito <bob@redivi.com>2015-09-04 10:35:32 -0700
commit82fdecb6a892579bde16f43b4b983b9dce6c3643 (patch)
tree3dee606191ae3d78b994adf6390f4f4fdde16351
parent92cecfe676bd943c105604c97d8502769d6a3567 (diff)
downloadsimplejson-82fdecb6a892579bde16f43b4b983b9dce6c3643.tar.gz
Update version to 3.8.1
-rw-r--r--CHANGES.txt7
-rw-r--r--conf.py2
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
4 files changed, 9 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index a613af3..ccce4d5 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,9 @@
-Version 3.8.0 released 2015-XX-XX
+Version 3.8.1 released 2015-XX-XX
+
+* Fix typo in keyword argument name introduced in 3.8.0
+ https://github.com/simplejson/simplejson/pull/123
+
+Version 3.8.0 released 2015-07-18
* New iterable_as_array encoder option to perform lazy serialization of
any iterable objects, without having to convert to tuple or list.
diff --git a/conf.py b/conf.py
index 3c0020a..d83bca4 100644
--- a/conf.py
+++ b/conf.py
@@ -44,7 +44,7 @@ copyright = '2015, Bob Ippolito'
# The short X.Y version.
version = '3.8'
# The full version, including alpha/beta/rc tags.
-release = '3.8.0'
+release = '3.8.1'
# 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 8106054..a5d3500 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ from distutils.errors import CCompilerError, DistutilsExecError, \
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '3.8.0'
+VERSION = '3.8.1'
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
with open('README.rst', 'r') as f:
diff --git a/simplejson/__init__.py b/simplejson/__init__.py
index ac1e5cb..c448742 100644
--- a/simplejson/__init__.py
+++ b/simplejson/__init__.py
@@ -97,7 +97,7 @@ Using simplejson.tool from the shell to validate and pretty-print::
Expecting property name: line 1 column 3 (char 2)
"""
from __future__ import absolute_import
-__version__ = '3.8.0'
+__version__ = '3.8.1'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',