From b54f628c59f0be89c4b61046a28c4ce380e8ae22 Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Thu, 15 Feb 2024 14:17:26 +0100 Subject: [PATCH] Bump version (#468) --- CHANGELOG.md | 13 ++++++++++++- wgpu/__init__.py | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 288420ac..1b01fb2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,18 @@ Possible sections in each release: * Security: in case of vulnerabilities. -### [v0.14.0] +### [v0.14.1] - 15-02-2024 + +Added: + +* The `wgpu.DiagnosticsBase` is now a public base class that can be subclassed by downstream libs (like pygfx) to provide diagnostics. + +Changed: + +* Diagnostics renders bools as `✓` or `-`, and large ints get scientific notation. + + +### [v0.14.0] - 13-02-2024 Added: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index ef8ef480..2eeaf5a7 100644 --- a/wgpu/__init__.py +++ b/wgpu/__init__.py @@ -13,7 +13,7 @@ from . import resources # noqa: F401,F403 -__version__ = "0.14.0" +__version__ = "0.14.1" version_info = tuple(map(int, __version__.split(".")))