summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2021-08-23 21:15:14 -0700
committerBob Ippolito <bob@redivi.com>2021-08-23 21:15:14 -0700
commit39a269f8ac829a0e8cb7ee5ff3597227e334b4d0 (patch)
tree3e3469eedf611456b8c1a4e57ced45a53314a0fa
parente70f4b05c8b661c0930eb2ea3a079ea3dcbaae87 (diff)
downloadsimplejson-39a269f8ac829a0e8cb7ee5ff3597227e334b4d0.tar.gz
Update version to 3.17.5
-rw-r--r--conf.py2
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/conf.py b/conf.py
index 9809d1a..bc79a42 100644
--- a/conf.py
+++ b/conf.py
@@ -44,7 +44,7 @@ copyright = '2021, Bob Ippolito'
# The short X.Y version.
version = '3.17'
# The full version, including alpha/beta/rc tags.
-release = '3.17.4'
+release = '3.17.5'
# 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 92a2108..74fc2ce 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.17.4'
+VERSION = '3.17.5'
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 aecbbaa..c41029e 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.17.4'
+__version__ = '3.17.5'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',