diff --git a/CHANGES.txt b/CHANGES.txt index 9bb9d78701918d52349f1cff02c38ba1026fc5a0_Q0hBTkdFUy50eHQ=..3ee53d57017a51e41a0d09812e29d90f1090fe4c_Q0hBTkdFUy50eHQ= 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,2 +1,2 @@ -Version 3.17.1 released 2020-07-16 +Version 3.17.2 released 2020-07-16 @@ -2,5 +2,6 @@ -* 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 9bb9d78701918d52349f1cff02c38ba1026fc5a0_Y29uZi5weQ==..3ee53d57017a51e41a0d09812e29d90f1090fe4c_Y29uZi5weQ== 100644 --- 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 index 9bb9d78701918d52349f1cff02c38ba1026fc5a0_c2V0dXAucHk=..3ee53d57017a51e41a0d09812e29d90f1090fe4c_c2V0dXAucHk= 100644 --- 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 index 9bb9d78701918d52349f1cff02c38ba1026fc5a0_c2ltcGxlanNvbi9fX2luaXRfXy5weQ==..3ee53d57017a51e41a0d09812e29d90f1090fe4c_c2ltcGxlanNvbi9fX2luaXRfXy5weQ== 100644 --- 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',