diff --git a/CHANGELOG.md b/CHANGELOG.md index e68e62ce..6d8eb610 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,14 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.9.3] - 20-02-2023 + +Changed: + +* The offscreen `WgpuCanvas.draw()` method now returns a `memoryview` instead of a numpy array. +* The shadertoy util changed internally from using numpy to using a memoryview. + + ### [v0.9.2] - 17-02-2023 Fixed: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index d9f57e5b..ed1a17e1 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.2" +__version__ = "0.9.3" version_info = tuple(map(int, __version__.split(".")))