From f3a0bdff228e41121aeb03a4776a883b349addbe Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Tue, 10 Oct 2023 23:31:31 +0200 Subject: [PATCH] Bump version (#374) --- CHANGELOG.md | 8 ++++++++ wgpu/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e877380..3d99ea2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,14 @@ Possible sections in each release: * Fixed: for any bug fixes. * Security: in case of vulnerabilities. + +### [v0.11.0] - 11-10-2023 + +Changed: + +* Update to wgpu-native 0.17.2.1. No changes are needed in downstream code. + + ### [v0.10.0] - 09-10-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 d46bf0c2..fe5a8b6b 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.10.0" +__version__ = "0.11.0" version_info = tuple(map(int, __version__.split(".")))