Skip to content

Commit

Permalink
Bump version (#449)
Browse files Browse the repository at this point in the history
* Bump version

* Update CHANGELOG.md

Co-authored-by: Korijn van Golen <[email protected]>

* Update CHANGELOG.md

---------

Co-authored-by: Korijn van Golen <[email protected]>
  • Loading branch information
almarklein and Korijn authored Dec 8, 2023
1 parent 77c1ee9 commit a748097
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion wgpu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(".")))


Expand Down

0 comments on commit a748097

Please sign in to comment.