summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2019-11-17 22:16:37 -0800
committerBob Ippolito <bob@redivi.com>2019-11-17 22:16:37 -0800
commit6cbbd1859f7ff219c19f68d3063842cdd6db1885 (patch)
tree5b6887219e68442c78b1c4c391aa800b6d0742c0
parent07a67957ddb2d55e6d8994474c0e18c9c7d967a7 (diff)
downloadsimplejson-6cbbd1859f7ff219c19f68d3063842cdd6db1885.tar.gz
Set version back to v3.17.0v3.17.0
-rw-r--r--CHANGES.txt2
-rw-r--r--conf.py4
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
4 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index c7423fb..c1caa23 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,4 @@
-Version 3.18.0 released 2019-11-17
+Version 3.17.0 released 2019-11-17
* Updated documentation to be Python 3 first, and
have removed documentation notes about version changes
diff --git a/conf.py b/conf.py
index 255cad8..7a49fff 100644
--- a/conf.py
+++ b/conf.py
@@ -42,9 +42,9 @@ copyright = '2018, Bob Ippolito'
# other places throughout the built documents.
#
# The short X.Y version.
-version = '3.18'
+version = '3.17'
# The full version, including alpha/beta/rc tags.
-release = '3.18.0'
+release = '3.17.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 cda42f0..b4d2e68 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ from distutils.errors import CCompilerError, DistutilsExecError, \
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '3.16.1'
+VERSION = '3.17.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 035b45e..7b5687c 100644
--- a/simplejson/__init__.py
+++ b/simplejson/__init__.py
@@ -118,7 +118,7 @@ Serializing multiple objects to JSON lines (newline-delimited JSON)::
"""
from __future__ import absolute_import
-__version__ = '3.18.0'
+__version__ = '3.17.0'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',