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. This project follows semantic versioning.
### v0.11.1 (2018-11-13)
- [fixed] Fixed bad window size in menu example
### v0.11 (2018-10-23) ### v0.11 (2018-10-23)
- [changed] macOS now uses Metal for rendering the buffer. - [changed] macOS now uses Metal for rendering the buffer.

View file

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

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