diff --git a/CHANGELOG.md b/CHANGELOG.md index 782dc789..425b8729 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: diff --git a/wgpu/_version.py b/wgpu/_version.py index 3c354d9e..884d1d2c 100644 --- a/wgpu/_version.py +++ b/wgpu/_version.py @@ -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"