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(".")))