From f1bd963821f0c563d1fe02f6eef59f6a2ca51946 Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Sat, 5 May 2018 15:21:46 +0200 Subject: [PATCH] Updated to 0.10.5 --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 ++-- README.md | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1021d1d..71b1a58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ This project follows semantic versioning. +### v0.10.5 (2018-05-05) + +- [added] Scale x8 added for Unix +- [fixed] Auto scaling now works correct if scale up is >= screen size + ### v0.10.4 (2018-01-08) - [fixed] Bumped kernel32 to 0.2.2 due to compile errors on Windows. Thanks to Thomas Versteeg for this fix. diff --git a/Cargo.toml b/Cargo.toml index 496db8b..7d466dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "minifb" -version = "0.10.4" +version = "0.10.5" license = "MIT/Apache-2.0" authors = ["Daniel Collin "] description = "Cross-platform window setup with optional bitmap rendering" keywords = ["windowing", "window", "framebuffer"] categories = ["rendering"] repository = "https://github.com/emoon/rust_minifb" -documentation = "https://docs.rs/minifb/0.10.1/minifb" +documentation = "https://docs.rs/minifb/0.10.5/minifb" build = "build.rs" readme = "README.md" diff --git a/README.md b/README.md index a965cca..ba139ef 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Usage ```toml # Cargo.toml [dependencies] -minifb = "0.10.4" +minifb = "0.10.5" ``` Example