Skip to content

Commit 3cc6f36

Browse files
Bump version to 0.5.9 (#201)
* Use flake8-black to make black run as part of flake8 * Bump version of wgpu to 0.5.9 * Update changelog
1 parent c90279e commit 3cc6f36

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@ jobs:
2626
- name: Install dev dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
pip install -U black flake8 pep8-naming
30-
- name: Black
31-
run: |
32-
black --check .
29+
pip install -U black flake8 flake8-black pep8-naming
3330
- name: Flake8
3431
run: |
3532
flake8 .

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ Possible sections in each release:
1919

2020

2121

22+
### [v0.5.9] - 11-10-2021
23+
24+
Fixed:
25+
26+
* Include the correct binaries in macOS arm64 wheels
27+
* Options for arch argument of download-wgpu-native.py script
28+
29+
2230
### [v0.5.8] - 09-10-2021
2331

2432
Added:

wgpu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .base import * # noqa: F401,F403
99
from .gui import WgpuCanvasInterface # noqa: F401,F403
1010

11-
__version__ = "0.5.8"
11+
__version__ = "0.5.9"
1212
version_info = tuple(map(int, __version__.split(".")))
1313

1414

0 commit comments

Comments
 (0)