diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index d43b5208..fcf1120d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -129,6 +129,8 @@ jobs: uses: actions/download-artifact@v4 with: path: dist + - name: Flatten dist dir + run: find dist -mindepth 2 -type f -exec mv -f '{}' dist/ ';' - name: Set version from git ref run: echo "WGPU_PY_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV - name: Upload Release Assets @@ -138,8 +140,8 @@ jobs: name: ${{ env.WGPU_PY_VERSION }} token: ${{ secrets.GITHUB_TOKEN }} files: | - dist/**/*.tar.gz - dist/**/*.whl + dist/*.tar.gz + dist/*.whl body: | Autogenerated binary wheels that include wgpu-native. See [the changelog](https://github.com/pygfx/wgpu-py/blob/main/CHANGELOG.md) for details. diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f274afc..77670182 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ Possible sections in each release: * Security: in case of vulnerabilities. -### [v0.17.2] - 09-08-2024 +### [v0.17.3] - 10-09-2024 Added: @@ -26,6 +26,7 @@ Added: * Support for IMGUI, via `wgpu.utils.imgui`. * Wx is now a fully supported GUI backend. * A `BaseEnum` class was added to `wgpu.utils`, so it can be used in downstream libs like pygfx. +* The `WGPUCanvas.add_event_handler()` method now has an `order` arg. Changed: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index 383e743b..82654f49 100644 --- a/wgpu/__init__.py +++ b/wgpu/__init__.py @@ -13,7 +13,7 @@ from . import resources # noqa: F401,F403 -__version__ = "0.17.2" +__version__ = "0.17.3" version_info = tuple(map(int, __version__.split(".")))