From f343c5ce6599e3becb49672b057117c8b08d7bcd Mon Sep 17 00:00:00 2001 From: Korijn van Golen Date: Wed, 22 Dec 2021 15:59:35 +0100 Subject: [PATCH] version bump --- CHANGELOG.md | 7 +++++++ wgpu/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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(".")))