From 24ae0ee12b4c7705ca468663d6700ef112f6d130 Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Thu, 13 Jun 2024 11:26:04 +0200 Subject: [PATCH] Bump version (#525) --- CHANGELOG.md | 9 ++++++++- wgpu/__init__.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d001f3c6..3eb9dbbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,14 @@ Possible sections in each release: * Security: in case of vulnerabilities. -### [v0.16.0] - tbd +### [v0.16.0] - 13-06-2024 + +Changed: + +* Updated to wgpu-native 0.19.4.1. Does not incur API changes. +* Updated to latest IDL. +* Replaced the `adapter.request_adapter_info()` method with the `adapter.info` property. + Changed: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index d127de26..4f60ace2 100644 --- a/wgpu/__init__.py +++ b/wgpu/__init__.py @@ -13,7 +13,7 @@ from . import resources # noqa: F401,F403 -__version__ = "0.15.3" +__version__ = "0.16.0" version_info = tuple(map(int, __version__.split(".")))