We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baa709b commit defa19aCopy full SHA for defa19a
CHANGELOG.md
@@ -18,6 +18,14 @@ Possible sections in each release:
18
* Security: in case of vulnerabilities.
19
20
21
+### [v0.8.4] - 10-01-2023
22
+
23
+Fixed:
24
25
+* The offscreen canvas's mainloop prevents leaking callbacks better (#322)
26
+* Prevent error messages when Qt examples/apps are closed (#326)
27
28
29
### [v0.8.3] - 06-01-2023
30
31
Fixed:
wgpu/__init__.py
@@ -8,7 +8,7 @@
8
from .base import * # noqa: F401,F403
9
from .gui import WgpuCanvasInterface # noqa: F401,F403
10
11
-__version__ = "0.8.3"
+__version__ = "0.8.4"
12
version_info = tuple(map(int, __version__.split(".")))
13
14
0 commit comments