Skip to content

Commit

Permalink
Bump version (#484)
Browse files Browse the repository at this point in the history
  • Loading branch information
almarklein authored Mar 28, 2024
1 parent d28cac9 commit 840efcf
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,29 @@ Possible sections in each release:
* Security: in case of vulnerabilities.


### [v0.15.1] - 28-03-2024

Added:

* Users can set the `WGPU_GUI_BACKEND` environment variable to prefer a specific backend.
* Added `wgpu.gpu.enumerate_adapters()`.
* Added `adapter.summary` property, to easily get a one-line description of each adapter.

Changed:

* Avoid present-related warning messages when an exception is raised from the draw function.
* The `adapter.request_adapter_info()` now also contains `vendor_id` and `device_id`.

Fixed:

* For GUI backend selection:
* Honor `%gui` in IPython and Jupyter.
* Don't enter Qt event loop when Qt is active by the env (e.g. IPython).
* Prefer glfw when we detect a running asyncio loop.
* Make the glfw backend work in IPython.
* The `run()` function can be called multiple times (similar to `plt.plot()`).


### [v0.15.0] - 07-03-2024

Changed:
Expand Down
2 changes: 1 addition & 1 deletion wgpu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from . import resources # noqa: F401,F403


__version__ = "0.15.0"
__version__ = "0.15.1"
version_info = tuple(map(int, __version__.split(".")))


Expand Down

0 comments on commit 840efcf

Please sign in to comment.