diff --git a/CHANGELOG.md b/CHANGELOG.md index d63a53b8..4129e5b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,19 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.7.7] - 12-04-2022 + +Fixed: + +* Fixed that event handlers could not be added while in an event handler. +* Prevent swap chain errors when minimizing a window. + +Added: + +* The `QWgpuWidget` now also supports the autogui events. +* Our CI now tests the examples (including image comparisons). + + ### [v0.7.6] - 28-03-2022 Changed: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index 99d01b34..cce48977 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.7.6" +__version__ = "0.7.7" version_info = tuple(map(int, __version__.split(".")))