diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d8eb610..3fdcdf4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,14 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.9.4] - 23-02-2023 + +Fixed: + +* Fixed issue related to winid (native widgets) on embedded Qt widgets on Windows (#348). +* Fixed our example screenshot tests. + + ### [v0.9.3] - 20-02-2023 Changed: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index ed1a17e1..8231b742 100644 --- a/wgpu/__init__.py +++ b/wgpu/__init__.py @@ -8,7 +8,7 @@ from .base import * # noqa: F401,F403 from .gui import WgpuCanvasInterface # noqa: F401,F403 -__version__ = "0.9.3" +__version__ = "0.9.4" version_info = tuple(map(int, __version__.split(".")))