From b8c633589fbb226ec2eee44d3d23782191050177 Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Mon, 16 Sep 2024 12:54:28 +0200 Subject: [PATCH] Bump version to 0.18.0 (#584) * Bump version to 0.18.0 * remove typo --- CHANGELOG.md | 16 ++++++++++++++++ wgpu/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dae27d89..db3774f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,22 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.18.0] - 16-09-2024 + +Added: + +* Now also building wheels for Windows aarch64. + +Changed: + +* Updated to latest wgpu-native (v22.1.0.5). + +Fixed: + +* Various typos in the docs. +* Fixed the wheels for 32bit Windows. + + ### [v0.17.3] - 10-09-2024 Added: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index 82654f49..1c3a6de5 100644 --- a/wgpu/__init__.py +++ b/wgpu/__init__.py @@ -13,7 +13,7 @@ from . import resources # noqa: F401,F403 -__version__ = "0.17.3" +__version__ = "0.18.0" version_info = tuple(map(int, __version__.split(".")))