Skip to content

Commit 5514dd2

Browse files
committed
Bump version: v1.9.0
1 parent bdf765c commit 5514dd2

15 files changed

+36
-23
lines changed

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
- uses: actions/setup-python@v2
8787

8888
- name: Install cibuildwheel
89-
run: python -m pip install cibuildwheel==1.8.0
89+
run: python -m pip install cibuildwheel==1.9.0
9090

9191
- name: Build wheels
9292
run: python -m cibuildwheel --output-dir wheelhouse
@@ -310,9 +310,9 @@ Changelog
310310

311311
<!--changelog-start-->
312312

313-
### Next version
313+
### v1.9.0
314314

315-
_Some point in the future..._
315+
_5 February 2021_
316316

317317
- 🌟 Added support for Apple Silicon wheels on macOS! You can now
318318
cross-compile `universal2` and `arm64` wheels on your existing macOS Intel
@@ -332,6 +332,19 @@ _Some point in the future..._
332332
cibuildwheel a bit easier. If you need to override this for any reason,
333333
look at [`CIBW_PROJECT_REQUIRES_PYTHON`](https://cibuildwheel.readthedocs.io/en/stable/options/#requires-python).
334334
(#536)
335+
- 🌟 cibuildwheel can now be invoked as a native GitHub Action! You can now
336+
invoke cibuildwheel in a GHA build step like:
337+
338+
```yaml
339+
- name: Build wheels
340+
uses: joerick/[email protected]
341+
with:
342+
output-dir: wheelhouse
343+
# env:
344+
# CIBW_SOME_OPTION: value
345+
```
346+
This saves a bit of boilerplate, and you can [use Dependabot to keep the
347+
pinned version up-to-date](https://cibuildwheel.readthedocs.io/en/stable/faq/#automatic-updates).
335348
- ✨ Added `auto64` and `auto32` shortcuts to the
336349
[CIBW_ARCHS](https://cibuildwheel.readthedocs.io/en/stable/options/#archs)
337350
option. (#553)

cibuildwheel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.8.0'
1+
__version__ = '1.9.0'

docs/faq.md

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

205205
```yaml
206-
uses: joerick/cibuildwheel@v1.8.0
206+
uses: joerick/cibuildwheel@v1.9.0
207207
```
208208
209209
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.
@@ -229,7 +229,7 @@ The second option, and the only one that supports other CI systems, is using a `
229229

230230
```bash
231231
# requirements-cibw.txt
232-
cibuildwheel==1.8.0
232+
cibuildwheel==1.9.0
233233
```
234234

235235
Then your install step would have `python -m pip install -r requirements-cibw.txt` in it. Your `dependabot.yml` file could look like this:

docs/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For more info on this file, check out the [docs](https://help.github.com/en/acti
1717

1818
[`examples/github-deploy.yml`](https://github.com/joerick/cibuildwheel/blob/master/examples/github-deploy.yml) extends this minimal example with a demonstration of how to automatically upload the built wheels to PyPI.
1919

20-
You can also use cibuildwheel directly as an action with `uses: joerick/cibuildwheel@v1.8.0`; this combines the download and run steps into a single action, and command line arguments are available via `with:`. This makes it easy to manage cibuildwheel updates via normal actions update mechanisms like dependabot, see [Automatic updates](faq.md#automatic-updates).
20+
You can also use cibuildwheel directly as an action with `uses: joerick/cibuildwheel@v1.9.0`; this combines the download and run steps into a single action, and command line arguments are available via `with:`. This makes it easy to manage cibuildwheel updates via normal actions update mechanisms like dependabot, see [Automatic updates](faq.md#automatic-updates).
2121

2222
# Azure Pipelines [linux/mac/windows] {: #azure-pipelines}
2323

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==1.8.0
15+
install: python -m pip install cibuildwheel==1.9.0
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==1.8.0
9+
pip3 install cibuildwheel==1.9.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==1.8.0
23+
python3 -m pip install cibuildwheel==1.9.0
2424
displayName: Install dependencies
2525
- bash: cibuildwheel --output-dir wheelhouse .
2626
displayName: Build wheels
@@ -36,7 +36,7 @@ jobs:
3636
- bash: |
3737
set -o errexit
3838
python -m pip install --upgrade pip
39-
pip install cibuildwheel==1.8.0
39+
pip install cibuildwheel==1.9.0
4040
displayName: Install dependencies
4141
- bash: cibuildwheel --output-dir wheelhouse .
4242
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==1.8.0
14+
pip3 install --user cibuildwheel==1.9.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==1.8.0
28+
pip3 install cibuildwheel==1.9.0
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: joerick/cibuildwheel@v1.8.0
13+
uses: joerick/cibuildwheel@v1.9.0
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
@@ -31,7 +31,7 @@ jobs:
3131
run: choco install vcpython27 -f -y
3232

3333
- name: Build wheels
34-
uses: joerick/cibuildwheel@v1.8.0
34+
uses: joerick/cibuildwheel@v1.9.0
3535

3636
- uses: actions/upload-artifact@v2
3737
with:

examples/github-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: choco install vcpython27 -f -y
1919

2020
- name: Build wheels
21-
uses: joerick/cibuildwheel@v1.8.0
21+
uses: joerick/cibuildwheel@v1.9.0
2222
# to supply options, put them in 'env', like:
2323
# env:
2424
# CIBW_SOME_OPTION: value

0 commit comments

Comments
 (0)