diff --git a/CHANGELOG.md b/CHANGELOG.md index 47ddc58..5c3f9a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ This project follows semantic versioning. +### v0.24 (2023-02-18) + +- [fixed] Windows: Unable to use F10 key +- [fixed] set byposition flag when removing menus (Thanks piksel!) +- [fixed] fixed compilation for x11 32-bit mode (Thanks HBehrens!) +- [fixed] X11 window names not supporting UTF-8 (Thanks edarogh!) +- [fixed] `get_window_position` for multiscreen setup on macOS (Thanks AnderasOM!) +- [fixed] Using minifb on multiple threads under x11 works and doesn't crash (Thanks to konnorandrews for suggestion!) +- [Added] ARM and AARCH64 Windows Support (Thanks smb123w64gb!) + ### v0.23 (2022-04-19) - [fixed] wayland: Fix key character callback & Reduce wayland dependencies (Thanks vmedea!) diff --git a/Cargo.toml b/Cargo.toml index 58dedc2..8d71d32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minifb" -version = "0.23.0" +version = "0.24.0" license = "MIT OR Apache-2.0" authors = ["Daniel Collin "] description = "Cross-platform window setup with optional bitmap rendering" diff --git a/README.md b/README.md index b70d60c..c72e655 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Usage ```toml # Cargo.toml [dependencies] -minifb = "0.23" +minifb = "0.24" ``` Example