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
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,26 @@ Possible sections in each release:
* Security: in case of vulnerabilities.


## [v0.28.0] - 10-11-2025

We moved the implementation of the contexts to `rendercanvas` and made `GPUCanvasContext` lighter (and more low-level).
We made sure that the new `rendercanvas` (v2.4) was compatible with both the old and new wgpu.
However, code that uses the imgui adapter will break with `rendercanvas` v2.4 and requires this release of wgpu-py to fix it.

Added:

* Add util to get glfw present_info by @almarklein in https://github.com/pygfx/wgpu-py/pull/767

Changed:

* Canvas/context inversion of control by @Korijn in https://github.com/pygfx/wgpu-py/pull/764

Fixed:

* Fix compatibility with rendercanvas 2.4.0 by @hmaarrfk in https://github.com/pygfx/wgpu-py/pull/768
* Also run example-tests with imgui by @almarklein in https://github.com/pygfx/wgpu-py/pull/769


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

Fixed:
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.27.0"
__version__ = "0.28.0"

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