Bump to 0.19

This commit is contained in:
Daniel Collin 2020-09-16 08:47:42 +02:00
parent 8de1d5718d
commit 7e040c240a
3 changed files with 9 additions and 2 deletions

View file

@ -2,6 +2,13 @@
This project follows semantic versioning. This project follows semantic versioning.
### v0.18 (2020-09-16)
- [added] Added char_callback example on how to capture data.
- [added] Support for topmost on Windows (Thanks phillvancejr!)
- [fixed] ARM (Raspberry Pi) now builds and runs. (Thanks derpeter!)
- [changed] Removed a bunch of dependencies not needed anymore (Thanks RazrFalcon!)
### v0.18 (2020-08-14) ### v0.18 (2020-08-14)
- [fixed] get_released_keys wasn't working under Wayland. - [fixed] get_released_keys wasn't working under Wayland.

View file

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

View file

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