Bump to 0.19.1

This commit is contained in:
Daniel Collin 2020-09-22 21:00:36 +02:00
parent ee3b185098
commit a56e79ca50
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.19 (2020-09-22)
- [fixed] Removed dummy logging
### v0.19 (2020-09-16) ### v0.19 (2020-09-16)
- [added] Added char_callback example on how to capture data. - [added] Added char_callback example on how to capture data.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "minifb" name = "minifb"
version = "0.19.0" version = "0.19.1"
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" minifb = "0.19.1"
``` ```
Example Example