File tree 2 files changed +24
-1
lines changed 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,29 @@ Possible sections in each release:
17
17
* Security: in case of vulnerabilities.
18
18
19
19
20
+ ### [ v0.15.1] - 28-03-2024
21
+
22
+ Added:
23
+
24
+ * Users can set the ` WGPU_GUI_BACKEND ` environment variable to prefer a specific backend.
25
+ * Added ` wgpu.gpu.enumerate_adapters() ` .
26
+ * Added ` adapter.summary ` property, to easily get a one-line description of each adapter.
27
+
28
+ Changed:
29
+
30
+ * Avoid present-related warning messages when an exception is raised from the draw function.
31
+ * The ` adapter.request_adapter_info() ` now also contains ` vendor_id ` and ` device_id ` .
32
+
33
+ Fixed:
34
+
35
+ * For GUI backend selection:
36
+ * Honor ` %gui ` in IPython and Jupyter.
37
+ * Don't enter Qt event loop when Qt is active by the env (e.g. IPython).
38
+ * Prefer glfw when we detect a running asyncio loop.
39
+ * Make the glfw backend work in IPython.
40
+ * The ` run() ` function can be called multiple times (similar to ` plt.plot() ` ).
41
+
42
+
20
43
### [ v0.15.0] - 07-03-2024
21
44
22
45
Changed:
Original file line number Diff line number Diff line change 13
13
from . import resources # noqa: F401,F403
14
14
15
15
16
- __version__ = "0.15.0 "
16
+ __version__ = "0.15.1 "
17
17
version_info = tuple (map (int , __version__ .split ("." )))
18
18
19
19
You can’t perform that action at this time.
0 commit comments