summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2016-10-21 14:55:33 +0700
committerBob Ippolito <bob@redivi.com>2016-10-21 14:55:33 +0700
commit84b90d3ecf11397d87b6175e30eb5cb884cef8df (patch)
tree49f222de4ce4861ee94130a0fd12926b8768c243
parentd78256146d2831e3a7080b7212d7edb90bc2d611 (diff)
downloadsimplejson-84b90d3ecf11397d87b6175e30eb5cb884cef8df.tar.gz
Bump version to 3.9.0
-rw-r--r--CHANGES.txt2
-rw-r--r--conf.py6
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
4 files changed, 6 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index abf04dd..4276a3f 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,4 @@
-Version 3.8.3 released XXXX-XX-XX
+Version 3.9.0 released XXXX-XX-XX
* Workaround for bad behavior in string subclasses
https://github.com/simplejson/simplejson/issues/144
diff --git a/conf.py b/conf.py
index 8a6a391..766271c 100644
--- a/conf.py
+++ b/conf.py
@@ -36,15 +36,15 @@ master_doc = 'index'
# General substitutions.
project = 'simplejson'
-copyright = '2015, Bob Ippolito'
+copyright = '2016, Bob Ippolito'
# The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
#
# The short X.Y version.
-version = '3.8'
+version = '3.9'
# The full version, including alpha/beta/rc tags.
-release = '3.8.2'
+release = '3.9.0'
# 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 1a92c2f..b24fe7d 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.2'
+VERSION = '3.9.0'
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 b7fe828..84acfa4 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.2'
+__version__ = '3.9.0'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',