From 3b6f22e0e84962255c43aa197a90bc1b90ccc627 Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Fri, 16 May 2025 10:57:08 +0200 Subject: [PATCH] Bump version --- CHANGELOG.md | 14 ++++++++++++++ wgpu/_version.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8b3f54a..7769c026 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,20 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.22.2] - 16-05-2025 + +Added: + +* Add type hints for properties by @Vipitis in https://github.com/pygfx/wgpu-py/pull/703 +* Support extra data in stats by @panxinmiao in https://github.com/pygfx/wgpu-py/pull/712 + +Changed: + +* Set the size via `imgui.io` instead of using the `psize` parameter of the render method. by @panxinmiao in https://github.com/pygfx/wgpu-py/pull/713 + + +**Full Changelog**: https://github.com/pygfx/wgpu-py/compare/v0.22.1...asd + ### [v0.22.1] - 17-04-2025 Changed: diff --git a/wgpu/_version.py b/wgpu/_version.py index 291df6b1..993a27aa 100644 --- a/wgpu/_version.py +++ b/wgpu/_version.py @@ -10,7 +10,7 @@ # This is the reference version number, to be bumped before each release. # The build system detects this definition when building a distribution. -__version__ = "0.22.1" +__version__ = "0.22.2" # Allow using nearly the same code in different projects project_name = "wgpu"