Updated to 0.11.1

This commit is contained in:
Daniel Collin 2018-11-13 21:41:00 +01:00
parent a8a969afee
commit 6137568ef5
3 changed files with 7 additions and 3 deletions

View file

@ -2,6 +2,10 @@
This project follows semantic versioning.
### v0.11.1 (2018-11-13)
- [fixed] Fixed bad window size in menu example
### v0.11 (2018-10-23)
- [changed] macOS now uses Metal for rendering the buffer.

View file

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

View file

@ -14,7 +14,7 @@ Usage
```toml
# Cargo.toml
[dependencies]
minifb = "0.11"
minifb = "0.11.1"
```
Example
@ -62,7 +62,7 @@ cargo build
cargo run --example noise
```
This will run the [noise example](https://github.com/emoon/rust_minifb/blob/master/examples/noise.rs)
This will run the [noise example](https://github.com/emoon/rust_minifb/blob/master/examples/noise.rs)
## License