summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2020-07-16 10:53:17 -0700
committerBob Ippolito <bob@redivi.com>2020-07-16 10:53:17 -0700
commitc51668542b406c5aadb052a1513245307cc8b014 (patch)
treee728be436b39b7d81c2cc3c39e4c64cd68f09dde
parentb84486a2ada6c20f7752d40e7a699e6814460b20 (diff)
downloadsimplejson-c51668542b406c5aadb052a1513245307cc8b014.tar.gz
v3.17.2v3.17.2
-rw-r--r--CHANGES.txt5
-rw-r--r--conf.py2
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
4 files changed, 6 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index a4748f7..bc21b7e 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,7 @@
-Version 3.17.1 released 2020-07-16
+Version 3.17.2 released 2020-07-16
-* Added arm64 to build matrix
+* Added arm64 to build matrix and reintroduced
+ manylinux wheels
https://github.com/simplejson/simplejson/pull/264
* No more bdist_wininst builds per PEP 527
https://github.com/simplejson/simplejson/pull/260
diff --git a/conf.py b/conf.py
index a6c0605..9d91205 100644
--- a/conf.py
+++ b/conf.py
@@ -44,7 +44,7 @@ copyright = '2020, Bob Ippolito'
# The short X.Y version.
version = '3.17'
# The full version, including alpha/beta/rc tags.
-release = '3.17.1'
+release = '3.17.2'
# 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 04717d1..3252f2f 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.1'
+VERSION = '3.17.2'
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 dc8858c..2e3b838 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.1'
+__version__ = '3.17.2'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',