Skip to content

Commit 268dadf

Browse files
authored
version bump (#220)
1 parent fdd6c28 commit 268dadf

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,27 @@ Possible sections in each release:
1818
* Security: in case of vulnerabilities.
1919

2020

21+
### [v0.6.0] - 16-12-2021
22+
23+
Added:
24+
25+
* Official support for Windows 3.10.
26+
* The `max_fps` argument can be provided to a canvas.
27+
* The glfw gui backend supports user events in the same manner as the jupyter gui backend,
28+
using the [jupyter_rfb event specification](https://jupyter-rfb.readthedocs.io/en/latest/events.html).
29+
* Introduce the `auto` gui backend, which selects either glfw or jupyter.
30+
31+
Fixed:
32+
33+
* The wx gui backend is now fully functional.
34+
35+
Changed:
36+
37+
* The qt and wx gui backend now contain `WgpuCanvas` for a toplevel window,
38+
and `WgpuWidget` for an embeddable widget.
39+
* All gui backends (can) now limit the FPS.
40+
* No changes to the wgpu API.
41+
2142

2243
### [v0.5.9] - 11-10-2021
2344

@@ -118,7 +139,7 @@ Fixed:
118139

119140
### [v0.5.2] - 23-05-2021
120141

121-
This release uses a new version of wgpu-native which has changed quite a bit iternally. There
142+
This release uses a new version of wgpu-native which has changed quite a bit internally. There
122143
is more validation (thus more restrictions). There are only a few changes to the API.
123144
However, one big change is that shaders can now be provided as both SpirV and WGSL. Due to
124145
the strict validation, most shaders compiled by PyShader are not usable anymore. We

wgpu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .base import * # noqa: F401,F403
99
from .gui import WgpuCanvasInterface # noqa: F401,F403
1010

11-
__version__ = "0.5.9"
11+
__version__ = "0.6.0"
1212
version_info = tuple(map(int, __version__.split(".")))
1313

1414

0 commit comments

Comments
 (0)