diff --git a/CHANGELOG.md b/CHANGELOG.md index 83b73172..c9615e05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,13 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.7.1] - 22-12-2021 + +Added: + +* #224 - Added `add_event_handler` and `remove_event_handler` to GLFW and Jupyter GUI canvases. + + ### [v0.7.0] - 21-12-2021 Changed: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index e924fa07..1cece282 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.0" +__version__ = "0.7.1" version_info = tuple(map(int, __version__.split(".")))