diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e2e1a0e..3cbd447d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,20 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.13.1] - 08-12-2023 + +Fixed: + +* Prevent access violation errors with GLFW on Windows. +* Prevent a segfault when deleting a `GPUPipelineLayout` (observed in a very specific use-case on LavaPipe). +* Fix `triangle_glsl.py` example. +* Fix that when logger is set to debug, errors are produced when Python exits. + +Added: + +* Support for linux-aarch64 (binary wheels available)! This includes Raspberry Pi's with a 64-bit OS, and adds support for building linux docker images on Apple Silicon devices without having to emulate x86 (no need for `--platform linux/amd64`). + + ### [v0.13.0] - 24-11-2023 Added: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index 9e13199f..2529b404 100644 --- a/wgpu/__init__.py +++ b/wgpu/__init__.py @@ -13,7 +13,7 @@ from . import resources # noqa: F401,F403 -__version__ = "0.13.0" +__version__ = "0.13.1" version_info = tuple(map(int, __version__.split(".")))