Skip to content

Commit 840efcf

Browse files
authored
Bump version (#484)
1 parent d28cac9 commit 840efcf

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,29 @@ Possible sections in each release:
1717
* Security: in case of vulnerabilities.
1818

1919

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+
2043
### [v0.15.0] - 07-03-2024
2144

2245
Changed:

wgpu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from . import resources # noqa: F401,F403
1414

1515

16-
__version__ = "0.15.0"
16+
__version__ = "0.15.1"
1717
version_info = tuple(map(int, __version__.split(".")))
1818

1919

0 commit comments

Comments
 (0)