diff --git a/CHANGELOG.md b/CHANGELOG.md index dae27d89..fa2d9d22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,10 +13,26 @@ Possible sections in each release: * Changed: for changes in existing functionality. * Deprecated: for soon-to-be removed features. * Removed: for now removed features. -* Fixed: for any bug fixes. +* Fixed: for any bug fixes.\ * Security: in case of vulnerabilities. +### [v0.18.0] - 16-09-2024 + +Added: + +* Now also building wheels for Windows aarch64. + +Changed: + +* Updated to latest wgpu-native (v22.1.0.5). + +Fixed: + +* Various typos in the docs. +* Fixed the wheels for 32bit Windows. + + ### [v0.17.3] - 10-09-2024 Added: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index 82654f49..1c3a6de5 100644 --- a/wgpu/__init__.py +++ b/wgpu/__init__.py @@ -13,7 +13,7 @@ from . import resources # noqa: F401,F403 -__version__ = "0.17.3" +__version__ = "0.18.0" version_info = tuple(map(int, __version__.split(".")))