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(".")))