Skip to content

Commit 5d9c49a

Browse files
authored
Fix pypy release in cd (#573)
* fix pypy release in cd * also bump
1 parent 8f66e31 commit 5d9c49a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
draft: false
147147
prerelease: false
148148
- name: Publish to PyPI
149-
uses: pypa/gh-action-pypi-publish@v1
149+
uses: pypa/gh-action-pypi-publish@release/v1
150150
with:
151151
user: __token__
152152
password: ${{ secrets.PYPI_PASSWORD }}

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Possible sections in each release:
1717
* Security: in case of vulnerabilities.
1818

1919

20-
### [v0.17.1] - 05-08-2024
20+
### [v0.17.2] - 09-08-2024
2121

2222
Added:
2323

@@ -35,6 +35,8 @@ Changed:
3535
* Support omitting fields from `BindGroupLayoutEntry`, `BufferBindingLayout`, `SamplerBindingLayout`, `StorageTextureBindingLayout`, `VertexState`. See https://github.com/pygfx/wgpu-py/pull/534 for details.
3636
* In cases where a `view_dimension` is given, it must be provided as a string (e.g. '2d'). Ints are no longer allowed, because e.g. 2 does *not* mean '2d', which can be a source of confusion.
3737

38+
(Due to problems with the CD process, we had to bump the version a few times.)
39+
3840

3941
### [v0.16.0] - 13-06-2024
4042

wgpu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from . import resources # noqa: F401,F403
1414

1515

16-
__version__ = "0.17.1"
16+
__version__ = "0.17.2"
1717
version_info = tuple(map(int, __version__.split(".")))
1818

1919

0 commit comments

Comments
 (0)