Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ Possible sections in each release:
* Security: in case of vulnerabilities.


### [v0.27.0] - 05-11-2025

Fixed:

* Fix that memory for struct data was released before wgpu-native consumed it by @almarklein in https://github.com/pygfx/wgpu-py/pull/765
* This fixes that wgpu would segfault.

Changed:

* Promise / Future API with .then() by @almarklein in https://github.com/pygfx/wgpu-py/pull/739
* The async methods now return a promise-like object which has `.sync_wait()`, `.then()`, and be we awaited.


### [v0.26.0] - 17-10-2025

Changed:
Expand Down
2 changes: 1 addition & 1 deletion wgpu/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

# This is the base version number, to be bumped before each release.
# The build system detects this definition when building a distribution.
__version__ = "0.26.0"
__version__ = "0.27.0"

# Set this to your library name
project_name = "wgpu"
Expand Down
Loading