diff --git a/CHANGELOG.md b/CHANGELOG.md index 956ae3da..09ea2300 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,19 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.9.1] - 13-02-2023 + +Changed: + +* Improved documentation. + +Added: + +* Added `print_report()` to get a report on the internals of wgpu. +* Added `command_encoder.clear_buffer()` +* Added support for GLSL. + + ### [v0.9.0] - 25-01-2023 In this release the API is aligned with the latest webgpu.idl, and diff --git a/wgpu/__init__.py b/wgpu/__init__.py index 8268cf6d..44d55145 100644 --- a/wgpu/__init__.py +++ b/wgpu/__init__.py @@ -8,7 +8,7 @@ from .base import * # noqa: F401,F403 from .gui import WgpuCanvasInterface # noqa: F401,F403 -__version__ = "0.9.0" +__version__ = "0.9.1" version_info = tuple(map(int, __version__.split(".")))