Bump version to 0.22

This commit is contained in:
Daniel Collin 2022-03-27 10:09:45 +02:00
parent 80e8d4885a
commit 2bf4c248bf
3 changed files with 6 additions and 2 deletions

View file

@ -2,6 +2,10 @@
This project follows semantic versioning. This project follows semantic versioning.
### v0.22 (2022-03-27)
- [fixed] Updated docs to make it a bit more clear that only one of `update_with_buffer` or `update` should be used for updating a window.
### v0.21 (2022-03-27) ### v0.21 (2022-03-27)
- [fixed] Holding down a key on x11 would no repeat correctly - [fixed] Holding down a key on x11 would no repeat correctly

View file

@ -1,6 +1,6 @@
[package] [package]
name = "minifb" name = "minifb"
version = "0.21.0" version = "0.22.0"
license = "MIT OR Apache-2.0" license = "MIT OR 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.21" minifb = "0.22"
``` ```
Example Example