Skip to content

Commit 2f4987f

Browse files
committed
Bump version: v2.2.2
1 parent 8a45128 commit 2f4987f

17 files changed

+36
-32
lines changed

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
- uses: actions/setup-python@v2
8686

8787
- name: Install cibuildwheel
88-
run: python -m pip install cibuildwheel==2.2.1
88+
run: python -m pip install cibuildwheel==2.2.2
8989

9090
- name: Build wheels
9191
run: python -m cibuildwheel --output-dir wheelhouse
@@ -189,6 +189,12 @@ Changelog
189189

190190
<!-- this section was generated by bin/update_readme_changelog.py -- do not edit manually -->
191191

192+
### v2.2.2
193+
194+
_26 October 2021_
195+
196+
- 🐛 Fix bug in the GitHub Action step causing a syntax error (#895)
197+
192198
### v2.2.1
193199

194200
_26 October 2021_
@@ -214,7 +220,7 @@ _22 October 2021_
214220

215221
- 🛠 Support for TOML 1.0 when reading config files, via the `tomli` package. (#876)
216222

217-
<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>
223+
<sup>Note: This version is not available on PyPI due to some missing resources in the release files. Please use a later version instead.</sup>
218224

219225
### v2.1.3
220226

@@ -230,14 +236,6 @@ _14 September 2021_
230236
- 📚 Multiple docs updates
231237
- 🐛 Improved warnings when built binaries are bundled into the container on Linux. (#807)
232238

233-
### v2.1.1
234-
235-
_7 August 2021_
236-
237-
- ✨ Corresponding with the release of CPython 3.10.0rc1, which is ABI stable, cibuildwheel now builds CPython 3.10 by default - without the CIBW_PRERELEASE_PYTHONS flag.
238-
239-
<sup>Note: v2.1.0 was a bad release, it was yanked from PyPI.</sup>
240-
241239
<!-- END bin/update_readme_changelog.py -->
242240

243241
---

cibuildwheel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.2.1"
1+
__version__ = "2.2.2"

docs/changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
title: Changelog
33
---
44

5+
### v2.2.2
6+
7+
_26 October 2021_
8+
9+
- 🐛 Fix bug in the GitHub Action step causing a syntax error (#895)
10+
511
### v2.2.1
612

713
_26 October 2021_
@@ -27,7 +33,7 @@ _22 October 2021_
2733

2834
- 🛠 Support for TOML 1.0 when reading config files, via the `tomli` package. (#876)
2935

30-
<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>
36+
<sup>Note: This version is not available on PyPI due to some missing resources in the release files. Please use a later version instead.</sup>
3137

3238
### v2.1.3
3339

docs/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ There are two suggested methods for keeping cibuildwheel up to date that instead
127127
If you use GitHub Actions for builds, you can use cibuildwheel as an action:
128128

129129
```yaml
130-
uses: pypa/[email protected].1
130+
uses: pypa/[email protected].2
131131
```
132132
133133
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 `
153153

154154
```bash
155155
# requirements-cibw.txt
156-
cibuildwheel==2.2.1
156+
cibuildwheel==2.2.2
157157
```
158158

159159
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:

docs/setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
118118
- uses: actions/checkout@v2
119119

120120
- name: Build wheels
121-
run: pipx run cibuildwheel==2.2.1
121+
run: pipx run cibuildwheel==2.2.2
122122

123123
- uses: actions/upload-artifact@v2
124124
with:
@@ -153,7 +153,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
153153
- uses: actions/setup-python@v2
154154

155155
- name: Install cibuildwheel
156-
run: python -m pip install cibuildwheel==2.2.1
156+
run: python -m pip install cibuildwheel==2.2.2
157157

158158
- name: Build wheels
159159
run: python -m cibuildwheel --output-dir wheelhouse

examples/appveyor-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ stack: python 3.7
1212
init:
1313
- cmd: set PATH=C:\Python37;C:\Python37\Scripts;%PATH%
1414

15-
install: python -m pip install cibuildwheel==2.2.1
15+
install: python -m pip install cibuildwheel==2.2.2
1616

1717
build_script: python -m cibuildwheel --output-dir wheelhouse
1818

examples/azure-pipelines-minimal.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
- bash: |
77
set -o errexit
88
python3 -m pip install --upgrade pip
9-
pip3 install cibuildwheel==2.2.1
9+
pip3 install cibuildwheel==2.2.2
1010
displayName: Install dependencies
1111
- bash: cibuildwheel --output-dir wheelhouse .
1212
displayName: Build wheels
@@ -20,7 +20,7 @@ jobs:
2020
- bash: |
2121
set -o errexit
2222
python3 -m pip install --upgrade pip
23-
python3 -m pip install cibuildwheel==2.2.1
23+
python3 -m pip install cibuildwheel==2.2.2
2424
displayName: Install dependencies
2525
- bash: cibuildwheel --output-dir wheelhouse .
2626
displayName: Build wheels
@@ -34,7 +34,7 @@ jobs:
3434
- bash: |
3535
set -o errexit
3636
python -m pip install --upgrade pip
37-
pip install cibuildwheel==2.2.1
37+
pip install cibuildwheel==2.2.2
3838
displayName: Install dependencies
3939
- bash: cibuildwheel --output-dir wheelhouse .
4040
displayName: Build wheels

examples/circleci-minimal.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- run:
1212
name: Build the Linux wheels.
1313
command: |
14-
pip3 install --user cibuildwheel==2.2.1
14+
pip3 install --user cibuildwheel==2.2.2
1515
cibuildwheel --output-dir wheelhouse
1616
- store_artifacts:
1717
path: wheelhouse/
@@ -25,7 +25,7 @@ jobs:
2525
- run:
2626
name: Build the OS X wheels.
2727
command: |
28-
pip3 install cibuildwheel==2.2.1
28+
pip3 install cibuildwheel==2.2.2
2929
cibuildwheel --output-dir wheelhouse
3030
- store_artifacts:
3131
path: wheelhouse/

examples/github-apple-silicon.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v2
1111

1212
- name: Build wheels
13-
uses: pypa/[email protected].1
13+
uses: pypa/[email protected].2
1414
env:
1515
CIBW_ARCHS_MACOS: x86_64 universal2
1616

examples/github-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: '3.8'
2828

2929
- name: Build wheels
30-
uses: pypa/[email protected].1
30+
uses: pypa/[email protected].2
3131

3232
- uses: actions/upload-artifact@v2
3333
with:

0 commit comments

Comments
 (0)