Bump version: v2.2.1b1

This commit is contained in:
Joe Rickerby
2021-10-26 18:59:45 +01:00
parent bc3d3d123c
commit 90024def2c
17 changed files with 46 additions and 29 deletions
+12
View File
@@ -2,6 +2,16 @@
title: Changelog
---
### v2.2.1
_26 October 2021_
- 🛠 Added a `config-file` option on the GitHub Action to specify something
other than pyproject.toml in your GitHub Workflow file. (#883)
- 🐛 Fix missing resources in sdist and released wheel on PyPI. We've made
some internal change to our release processes to make them more reliable.
(#893, #894)
### v2.2.0
_22 October 2021_
@@ -20,6 +30,8 @@ _22 October 2021_
- 🛠 Support for TOML 1.0 when reading config files, via the `tomli` package. (#876)
<sup>Note: This version is not available on PyPI due to some missing resources in the release files. Please use v2.2.1 instead.</sup>
### v2.1.3
_6 October 2021_
+2 -2
View File
@@ -127,7 +127,7 @@ There are two suggested methods for keeping cibuildwheel up to date that instead
If you use GitHub Actions for builds, you can use cibuildwheel as an action:
```yaml
uses: pypa/cibuildwheel@v2.2.0
uses: pypa/cibuildwheel@v2.2.1b1
```
This is a composite step that just runs cibuildwheel using pipx. You can set command-line options as `with:` parameters, and use `env:` as normal.
@@ -153,7 +153,7 @@ The second option, and the only one that supports other CI systems, is using a `
```bash
# requirements-cibw.txt
cibuildwheel==2.2.0
cibuildwheel==2.2.1b1
```
Then your install step would have `python -m pip install -r requirements-cibw.txt` in it. Your `.github/dependabot.yml` file could look like this:
+2 -2
View File
@@ -118,7 +118,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
- uses: actions/checkout@v2
- name: Build wheels
run: pipx run cibuildwheel==2.2.0
run: pipx run cibuildwheel==2.2.1b1
- uses: actions/upload-artifact@v2
with:
@@ -153,7 +153,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
- uses: actions/setup-python@v2
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.2.0
run: python -m pip install cibuildwheel==2.2.1b1
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse