From e9e40a620cac9c3cf0a3abc1cc81e7d4002a7992 Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Mon, 20 Feb 2023 09:42:02 +0100 Subject: [PATCH] Version bump --- CHANGELOG.md | 8 ++++++++ wgpu/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) 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(".")))