From 3723e95d56f2cbaf806272d653cb7ef1824b795a Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Tue, 17 Sep 2024 15:03:53 +0200 Subject: [PATCH] Bump to v0.18.1 (#588) --- CHANGELOG.md | 11 +++++++++++ wgpu/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db3774f6..16cee878 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,17 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.18.1] - 17-09-2024 + +Added: + +* Add support for push constants (a wgpu native extension). + +Fixed: + +* Fixed jupyter gui backend. + + ### [v0.18.0] - 16-09-2024 Added: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index 1c3a6de5..0c9ea7cd 100644 --- a/wgpu/__init__.py +++ b/wgpu/__init__.py @@ -13,7 +13,7 @@ from . import resources # noqa: F401,F403 -__version__ = "0.18.0" +__version__ = "0.18.1" version_info = tuple(map(int, __version__.split(".")))