Skip to content

Commit 298a8ba

Browse files
committed
Bump version: v2.2.0
1 parent 6db5229 commit 298a8ba

17 files changed

+40
-40
lines changed

README.md

+10-10
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.0b1
88+
run: python -m pip install cibuildwheel==2.2.0
8989

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

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

192-
### v2.2.0 (prerelease)
192+
### v2.2.0
193193

194-
_Currently in prerelease. The below release notes will be condensed into a single entry on final release._
194+
_22 October 2021_
195195

196-
_v2.2.0b1 (19 October 2021)_
196+
- 🌟 Added support for [musllinux](https://www.python.org/dev/peps/pep-0656/). Support for this new wheel format lets projects build wheels for Linux distributions that use [musl libc](https://musl.libc.org/), notably, [Alpine](https://alpinelinux.org/) Docker containers. (#768)
197197

198-
- 🌟 TOML option overrides. This provides much greater flexibility in configuration via pyproject.toml.
198+
Musllinux builds are enabled by default. If you're not ready to build musllinux, add `*-musllinux_*` to your [`CIBW_SKIP`/`skip`](https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip) option. Or, you might have to make some changes to your options - to simplify that process, you can use...
199199

200-
You can now set build options for any subset of your builds using a match pattern. So, for example, you can customise CPython 3.8 builds with an override on `cp38-*` or musllinux builds by selecting `*musllinux*`. Check out [the docs](https://cibuildwheel.readthedocs.io/en/latest/options/#overrides) for more info on the specifics.
200+
- 🌟 TOML option overrides! This provides much greater flexibility in configuration via pyproject.toml. (#854)
201201

202-
_v2.2.0a1 (23 September 2021)_
202+
You can now set build options for any subset of your builds using a match pattern. So, for example, you can customise CPython 3.8 builds with an override on `cp38-*` or musllinux builds by selecting `*musllinux*`. Check out [the docs](https://cibuildwheel.readthedocs.io/en/latest/options/#overrides) for more info on the specifics.
203203

204-
- 🌟 Added support for [musllinux](https://www.python.org/dev/peps/pep-0656/). Support for this new wheel format lets projects build wheels for Linux distributions that use [musl libc](https://musl.libc.org/), notably, [Alpine](https://alpinelinux.org/) Docker containers.
204+
- 🛠 Added support for building PyPy wheels on macOS 11 CI runners. (#875)
205205

206-
Musllinux builds are enabled by default. To disable them on your project, add `*-musllinux_*` to your [`CIBW_SKIP`/`skip`](https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip)
207-
option. (#768)
208206
- 🛠 Setting an empty string for the [`CIBW_*_IMAGE`](https://cibuildwheel.readthedocs.io/en/stable/options/#manylinux-image) option will now fallthrough to the config file or cibuildwheel's default, rather than causing an error. This makes the option easier to use in CI build matricies. (#829)
209207

208+
- 🛠 Support for TOML 1.0 when reading config files, via the `tomli` package. (#876)
209+
210210
### v2.1.3
211211

212212
_6 October 2021_

cibuildwheel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.2.0b1"
1+
__version__ = "2.2.0"

docs/changelog.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22
title: Changelog
33
---
44

5-
### v2.2.0 (prerelease)
5+
### v2.2.0
66

7-
_Currently in prerelease. The below release notes will be condensed into a single entry on final release._
7+
_22 October 2021_
88

9-
_v2.2.0b1 (19 October 2021)_
9+
- 🌟 Added support for [musllinux](https://www.python.org/dev/peps/pep-0656/). Support for this new wheel format lets projects build wheels for Linux distributions that use [musl libc](https://musl.libc.org/), notably, [Alpine](https://alpinelinux.org/) Docker containers. (#768)
1010

11-
- 🌟 TOML option overrides. This provides much greater flexibility in configuration via pyproject.toml.
11+
Musllinux builds are enabled by default. If you're not ready to build musllinux, add `*-musllinux_*` to your [`CIBW_SKIP`/`skip`](https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip) option. Or, you might have to make some changes to your options - to simplify that process, you can use...
1212

13-
You can now set build options for any subset of your builds using a match pattern. So, for example, you can customise CPython 3.8 builds with an override on `cp38-*` or musllinux builds by selecting `*musllinux*`. Check out [the docs](https://cibuildwheel.readthedocs.io/en/latest/options/#overrides) for more info on the specifics.
13+
- 🌟 TOML option overrides! This provides much greater flexibility in configuration via pyproject.toml. (#854)
1414

15-
_v2.2.0a1 (23 September 2021)_
15+
You can now set build options for any subset of your builds using a match pattern. So, for example, you can customise CPython 3.8 builds with an override on `cp38-*` or musllinux builds by selecting `*musllinux*`. Check out [the docs](https://cibuildwheel.readthedocs.io/en/latest/options/#overrides) for more info on the specifics.
1616

17-
- 🌟 Added support for [musllinux](https://www.python.org/dev/peps/pep-0656/). Support for this new wheel format lets projects build wheels for Linux distributions that use [musl libc](https://musl.libc.org/), notably, [Alpine](https://alpinelinux.org/) Docker containers.
17+
- 🛠 Added support for building PyPy wheels on macOS 11 CI runners. (#875)
1818

19-
Musllinux builds are enabled by default. To disable them on your project, add `*-musllinux_*` to your [`CIBW_SKIP`/`skip`](https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip)
20-
option. (#768)
2119
- 🛠 Setting an empty string for the [`CIBW_*_IMAGE`](https://cibuildwheel.readthedocs.io/en/stable/options/#manylinux-image) option will now fallthrough to the config file or cibuildwheel's default, rather than causing an error. This makes the option easier to use in CI build matricies. (#829)
2220

21+
- 🛠 Support for TOML 1.0 when reading config files, via the `tomli` package. (#876)
22+
2323
### v2.1.3
2424

2525
_6 October 2021_

docs/faq.md

+2-2
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].0b1
130+
uses: pypa/[email protected].0
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.0b1
156+
cibuildwheel==2.2.0
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

+2-2
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.0b1
121+
run: pipx run cibuildwheel==2.2.0
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.0b1
156+
run: python -m pip install cibuildwheel==2.2.0
157157

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

examples/appveyor-minimal.yml

+1-1
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.0b1
15+
install: python -m pip install cibuildwheel==2.2.0
1616

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

examples/azure-pipelines-minimal.yml

+3-3
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.0b1
9+
pip3 install cibuildwheel==2.2.0
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.0b1
23+
python3 -m pip install cibuildwheel==2.2.0
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.0b1
37+
pip install cibuildwheel==2.2.0
3838
displayName: Install dependencies
3939
- bash: cibuildwheel --output-dir wheelhouse .
4040
displayName: Build wheels

examples/circleci-minimal.yml

+2-2
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.0b1
14+
pip3 install --user cibuildwheel==2.2.0
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.0b1
28+
pip3 install cibuildwheel==2.2.0
2929
cibuildwheel --output-dir wheelhouse
3030
- store_artifacts:
3131
path: wheelhouse/

examples/github-apple-silicon.yml

+1-1
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].0b1
13+
uses: pypa/[email protected].0
1414
env:
1515
CIBW_ARCHS_MACOS: x86_64 universal2
1616

examples/github-deploy.yml

+1-1
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].0b1
30+
uses: pypa/[email protected].0
3131

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

examples/github-minimal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515

1616
- name: Build wheels
17-
uses: pypa/[email protected].0b1
17+
uses: pypa/[email protected].0
1818
# to supply options, put them in 'env', like:
1919
# env:
2020
# CIBW_SOME_OPTION: value

examples/github-with-qemu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
platforms: all
2626

2727
- name: Build wheels
28-
uses: pypa/[email protected].0b1
28+
uses: pypa/[email protected].0
2929
env:
3030
# configure cibuildwheel to build native archs ('auto'), and some
3131
# emulated ones

examples/gitlab-minimal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ linux:
1212
DOCKER_TLS_CERTDIR: ""
1313
script:
1414
- curl -sSL https://get.docker.com/ | sh
15-
- python -m pip install cibuildwheel==2.2.0b1
15+
- python -m pip install cibuildwheel==2.2.0
1616
- cibuildwheel --output-dir wheelhouse
1717
artifacts:
1818
paths:

examples/travis-ci-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
2020

2121
install:
22-
- python3 -m pip install cibuildwheel==2.2.0b1
22+
- python3 -m pip install cibuildwheel==2.2.0
2323

2424
script:
2525
# build the wheels, put them into './wheelhouse'

examples/travis-ci-minimal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
2626

2727
install:
28-
- python3 -m pip install cibuildwheel==2.2.0b1
28+
- python3 -m pip install cibuildwheel==2.2.0
2929

3030
script:
3131
# build the wheels, put them into './wheelhouse'

examples/travis-ci-test-and-deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- stage: deploy
5858
name: Build and deploy Linux wheels
5959
services: docker
60-
install: python3 -m pip install cibuildwheel==2.2.0b1
60+
install: python3 -m pip install cibuildwheel==2.2.0
6161
script: python3 -m cibuildwheel --output-dir wheelhouse
6262
after_success: |
6363
python3 -m pip install twine
@@ -67,7 +67,7 @@ jobs:
6767
name: Build and deploy Windows wheels
6868
os: windows
6969
language: shell
70-
install: python3 -m pip install cibuildwheel==2.2.0b1
70+
install: python3 -m pip install cibuildwheel==2.2.0
7171
script: python3 -m cibuildwheel --output-dir wheelhouse
7272
after_success: |
7373
python3 -m pip install twine

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = cibuildwheel
3-
version = 2.2.0b1
3+
version = 2.2.0
44
description = Build Python wheels on CI with minimal configuration.
55
long_description = file: README.md
66
long_description_content_type = text/markdown

0 commit comments

Comments
 (0)