From 6137568ef5ebffcf5ffbfeeb27f97c8a51cd1e3f Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Tue, 13 Nov 2018 21:41:00 +0100 Subject: [PATCH] Updated to 0.11.1 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 818f863..2ad8563 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.toml b/Cargo.toml index 8cc87bc..15b839d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minifb" -version = "0.11.0" +version = "0.11.1" license = "MIT/Apache-2.0" authors = ["Daniel Collin "] description = "Cross-platform window setup with optional bitmap rendering" diff --git a/README.md b/README.md index bca155a..f1e8fa0 100644 --- a/README.md +++ b/README.md @@ -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