diff --git a/CHANGELOG.md b/CHANGELOG.md index 31b3c91c..ee407606 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,14 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.7.5] - 17-03-2022 + +Fixed: + +* Mouse down events were not emitted during double clicks in the Qt canvas. +* Mouse move events were not emitted no button is pressed in the Qt canvas. + + ### [v0.7.4] - 04-02-2022 Fixed: diff --git a/docs/conf.py b/docs/conf.py index 501c71e8..61fe3245 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,7 +57,7 @@ # -- Project information ----------------------------------------------------- project = "wgpu-py" -copyright = "2020-2021, Almar Klein, Korijn van Golen" +copyright = "2020-2022, Almar Klein, Korijn van Golen" author = "Almar Klein, Korijn van Golen" release = wgpu.__version__ diff --git a/wgpu/__init__.py b/wgpu/__init__.py index 76a183bb..35a1f984 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.4" +__version__ = "0.7.5" version_info = tuple(map(int, __version__.split(".")))