summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2019-11-17 22:03:12 -0800
committerBob Ippolito <bob@redivi.com>2019-11-17 22:03:12 -0800
commit07a67957ddb2d55e6d8994474c0e18c9c7d967a7 (patch)
tree8d44c980b5ba8a8e31f571ad6b4b2d59eb2be42d
parentea425570fa750f5492bcf6560b3ce6bbda3cd264 (diff)
downloadsimplejson-07a67957ddb2d55e6d8994474c0e18c9c7d967a7.tar.gz
Bump version to v3.18.0 to work around build issues
-rw-r--r--CHANGES.txt2
-rw-r--r--conf.py4
-rw-r--r--simplejson/__init__.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index c1caa23..c7423fb 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,4 @@
-Version 3.17.0 released 2019-11-17
+Version 3.18.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 7a49fff..255cad8 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.17'
+version = '3.18'
# The full version, including alpha/beta/rc tags.
-release = '3.17.0'
+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/simplejson/__init__.py b/simplejson/__init__.py
index 7b5687c..035b45e 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.0'
+__version__ = '3.18.0'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',