From 2d85f846ba4d06196ac9ab8094a701f6f5c55dcd Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Mon, 9 Oct 2023 10:00:13 +0200 Subject: [PATCH] bump version --- CHANGELOG.md | 5 +++-- wgpu/__init__.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5349a11f..5e877380 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,9 +17,10 @@ Possible sections in each release: * Fixed: for any bug fixes. * Security: in case of vulnerabilities. -### [v0.10.1] - tdb +### [v0.10.0] - 09-10-2023 -In this release the API is aligned with the latest webgpu.idl. +In this release the API is aligned with the latest webgpu.idl, and +we updated to wgpu-native (v0.17.0.2). Added: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index f563b5f8..d46bf0c2 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.5" +__version__ = "0.10.0" version_info = tuple(map(int, __version__.split(".")))