diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index e9ac5b3f..d43b5208 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -146,7 +146,7 @@ jobs: draft: false prerelease: false - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@v1 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_PASSWORD }} diff --git a/CHANGELOG.md b/CHANGELOG.md index cf2ed0e0..9f274afc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ Possible sections in each release: * Security: in case of vulnerabilities. -### [v0.17.1] - 05-08-2024 +### [v0.17.2] - 09-08-2024 Added: @@ -35,6 +35,8 @@ Changed: * Support omitting fields from `BindGroupLayoutEntry`, `BufferBindingLayout`, `SamplerBindingLayout`, `StorageTextureBindingLayout`, `VertexState`. See https://github.com/pygfx/wgpu-py/pull/534 for details. * 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. +(Due to problems with the CD process, we had to bump the version a few times.) + ### [v0.16.0] - 13-06-2024 diff --git a/wgpu/__init__.py b/wgpu/__init__.py index 9be8aebb..383e743b 100644 --- a/wgpu/__init__.py +++ b/wgpu/__init__.py @@ -13,7 +13,7 @@ from . import resources # noqa: F401,F403 -__version__ = "0.17.1" +__version__ = "0.17.2" version_info = tuple(map(int, __version__.split(".")))