From b8137196f36413893f7c078e878b230650ee15cb Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Mon, 25 Nov 2024 12:55:11 +0100 Subject: [PATCH] Bump version (#647) Co-authored-by: Korijn van Golen --- CHANGELOG.md | 7 +++++++ wgpu/_version.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20bee8e2..a59b29f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,13 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.19.2] - 25-11-2024 + +Changed: + +* Update to Imgui 1.6+ by @panxinmiao in https://github.com/pygfx/wgpu-py/pull/645 + + ### [v0.19.1] - 19-11-2024 Some internal refactoring, fix the doc theme, and compatibility with rendercanvas. diff --git a/wgpu/_version.py b/wgpu/_version.py index 0ae1c8f4..8e2f07d9 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.19.1" +__version__ = "0.19.2" # Allow using nearly the same code in different projects project_name = "wgpu"