summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2022-11-14 11:14:01 -0800
committerBob Ippolito <bob@redivi.com>2022-11-14 11:14:01 -0800
commit2c2c99830cca68cf7e2b7b67ff85397a7b032828 (patch)
treec1517497375fe2075e2f31d197ca07fe8d4eaeaf
parent3518a1876755517c3e320da8b451732076fd1f70 (diff)
downloadsimplejson-2c2c99830cca68cf7e2b7b67ff85397a7b032828.tar.gz
v3.18.0
-rw-r--r--conf.py4
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/conf.py b/conf.py
index 402899a..694446c 100644
--- a/conf.py
+++ b/conf.py
@@ -42,9 +42,9 @@ copyright = '2021, Bob Ippolito'
# other places throughout the built documents.
#
# The short X.Y version.
-version = '3.17'
+version = '3.18'
# The full version, including alpha/beta/rc tags.
-release = '3.17.7'
+release = '3.18.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 7261f4d..336f443 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.7'
+VERSION = '3.18.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 c40d027..c79ad1b 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.7'
+__version__ = '3.18.0'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',