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 5e2e9f5 commit fc8436dCopy full SHA for fc8436d
CHANGELOG.md
@@ -18,6 +18,19 @@ Possible sections in each release:
18
* Security: in case of vulnerabilities.
19
20
21
+### [v0.9.1] - 13-02-2023
22
+
23
+Changed:
24
25
+* Improved documentation.
26
27
+Added:
28
29
+* Added `print_report()` to get a report on the internals of wgpu.
30
+* Added `command_encoder.clear_buffer()`
31
+* Added support for GLSL.
32
33
34
### [v0.9.0] - 25-01-2023
35
36
In this release the API is aligned with the latest webgpu.idl, and
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.9.0"
+__version__ = "0.9.1"
12
version_info = tuple(map(int, __version__.split(".")))
13
14
0 commit comments