# HG changeset patch # User Bob Ippolito <bob@redivi.com> # Date 1594921997 25200 # Thu Jul 16 10:53:17 2020 -0700 # Node ID 3ee53d57017a51e41a0d09812e29d90f1090fe4c # Parent 9bb9d78701918d52349f1cff02c38ba1026fc5a0 v3.17.2 diff --git a/CHANGES.txt b/CHANGES.txt --- 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 --- a/conf.py +++ b/conf.py @@ -44,7 +44,7 @@ # 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 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ 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 --- a/simplejson/__init__.py +++ b/simplejson/__init__.py @@ -118,7 +118,7 @@ """ from __future__ import absolute_import -__version__ = '3.17.1' +__version__ = '3.17.2' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',