Bump to 0.20

This commit is contained in:
Daniel Collin 2021-11-28 18:49:41 +01:00
parent 64f2afde3d
commit 7c10c2fa78
3 changed files with 7 additions and 2 deletions

View file

@ -2,6 +2,11 @@
This project follows semantic versioning. This project follows semantic versioning.
### v0.20 (2021-11-28)
- [API BREAKAGE] Changing return types of get_keys from Option<Vec<Key>> to Vec<Key> (Thanks Zij-IT!)
- [fixed] get_scroll_wheel() would get "stuck" on macOS. (Thanks NikoUY for bug report!)
### v0.19.3 (2021-03-23) ### v0.19.3 (2021-03-23)
- [fixed] Fixed typos in description (Thanks hiqua!) - [fixed] Fixed typos in description (Thanks hiqua!)

View file

@ -1,6 +1,6 @@
[package] [package]
name = "minifb" name = "minifb"
version = "0.19.3" version = "0.20"
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.19.3" minifb = "0.20"
``` ```
Example Example