summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2021-11-15 23:26:43 -0800
committerGitHub <noreply@github.com>2021-11-15 23:26:43 -0800
commit02221b19672b1b35188080435c7360cd2d6af6fb (patch)
tree8378811a8d64db60b9a25c9f01c3c5167fe28fe6
parent695d0741cefa3f68159476d8ab93da3851e559c2 (diff)
parent06267cfd1f60f60e33fb13f7b863d207894505f4 (diff)
downloadsimplejson-3.17.6.tar.gz
Merge pull request #293 from simplejson/v3.17.6v3.17.6
v3.17.6
-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 bc79a42..e26e22d 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.5'
+release = '3.17.6'
# 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 54a79fa..1e0e477 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.5'
+VERSION = '3.17.6'
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 c41029e..20327ea 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.5'
+__version__ = '3.17.6'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',