diff --git a/CHANGELOG.md b/CHANGELOG.md index 09ea2300..e68e62ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,17 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.9.2] - 17-02-2023 + +Fixed: + +* Fixed that `get_preferred_format()` could crash (in `wgpuSurfaceGetSupportedFormats`) due to an upstream bug in wgpu-native (#342) + +Added: + +* The shadertoy util now supports GLSL, so code from the shadertoy website can be direcly copied and run with wgpu (#343) + + ### [v0.9.1] - 13-02-2023 Changed: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index 44d55145..d9f57e5b 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.1" +__version__ = "0.9.2" version_info = tuple(map(int, __version__.split(".")))