Updated version and changelog

This commit is contained in:
Daniel Collin 2023-02-18 13:10:27 +01:00
parent 1b58e0e7cc
commit 9df8b59940
3 changed files with 12 additions and 2 deletions

View file

@ -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!)

View file

@ -1,6 +1,6 @@
[package]
name = "minifb"
version = "0.23.0"
version = "0.24.0"
license = "MIT OR Apache-2.0"
authors = ["Daniel Collin <daniel@collin.com>"]
description = "Cross-platform window setup with optional bitmap rendering"

View file

@ -13,7 +13,7 @@ Usage
```toml
# Cargo.toml
[dependencies]
minifb = "0.23"
minifb = "0.24"
```
Example