From 850fb8d1e7733879018ad8618d032e535fa47fe4 Mon Sep 17 00:00:00 2001 From: Bob Ippolito Date: Thu, 19 Aug 2021 10:58:29 -0700 Subject: Upgrade cibuildwheel to v2.1.1 --- .github/workflows/build-and-deploy.yml | 2 +- CHANGES.txt | 5 +++++ conf.py | 2 +- setup.py | 2 +- simplejson/__init__.py | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index b3cf183..4f4d488 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -32,7 +32,7 @@ jobs: platforms: all - name: Build wheels - uses: pypa/cibuildwheel@v2.0.0a4 + uses: pypa/cibuildwheel@v2.1.1 env: CIBW_TEST_COMMAND: >- python -m simplejson.tests._cibw_runner "{project}" diff --git a/CHANGES.txt b/CHANGES.txt index 8f443c3..a397ece 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,8 @@ +Version 3.17.4 released 2021-08-19 + +* Upgrade cibuildwheel + https://github.com/simplejson/simplejson/pull/287 + Version 3.17.3 released 2021-07-09 * Replaced Travis-CI and AppVeyor with Github Actions, diff --git a/conf.py b/conf.py index 6c9cb56..9809d1a 100644 --- a/conf.py +++ b/conf.py @@ -44,7 +44,7 @@ copyright = '2021, Bob Ippolito' # The short X.Y version. version = '3.17' # The full version, including alpha/beta/rc tags. -release = '3.17.3' +release = '3.17.4' # 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 bfe8f25..92a2108 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.3' +VERSION = '3.17.4' 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 9e918ff..aecbbaa 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.3' +__version__ = '3.17.4' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder', -- cgit v1.2.1