Update to 0.8.4

This commit is contained in:
Daniel Collin 2016-07-31 18:06:50 +02:00
parent 26d41d1d07
commit 9cd8c97694
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.8.4 (2016-07-31)
- [fixed] Mac: Fixed crash on large window sizes
### v0.8.3 (2016-07-29) ### v0.8.3 (2016-07-29)
- [fixed] Mac: "Plonk sound" when pressing keys - [fixed] Mac: "Plonk sound" when pressing keys

View file

@ -1,6 +1,6 @@
[package] [package]
name = "minifb" name = "minifb"
version = "0.8.3" version = "0.8.4"
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

@ -14,7 +14,7 @@ Usage
```toml ```toml
# Cargo.toml # Cargo.toml
[dependencies] [dependencies]
minifb = "0.8.3" minifb = "0.8.4"
``` ```
Example Example