diff --git a/CHANGELOG.md b/CHANGELOG.md index b9751f1c..6f42e976 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,18 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.21.0] - 17-03-2025 + +This releases updates to using wgpu-native v24.0.0.2, and updates the API to the latest WebGPU spec (IDL). + +Added: + +* New `canvas_context.get_configuration()` method. +* New `device.adapter_info` property. +* New `usage` arg for `texture.create_view()`. +* New `feaure_level` arg for `request_adapter()`. More a diagnostic tool, not for most end-users. + + ### [v0.20.1] - 14-03-2025 Other: diff --git a/wgpu/_version.py b/wgpu/_version.py index f24033da..642f9dae 100644 --- a/wgpu/_version.py +++ b/wgpu/_version.py @@ -10,7 +10,7 @@ # This is the reference version number, to be bumped before each release. # The build system detects this definition when building a distribution. -__version__ = "0.20.1" +__version__ = "0.21.0" # Allow using nearly the same code in different projects project_name = "wgpu"