Updated to 0.10.5

This commit is contained in:
Daniel Collin 2018-05-05 15:21:46 +02:00
parent 26e6eca208
commit f1bd963821
3 changed files with 8 additions and 3 deletions

View file

@ -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.

View file

@ -1,13 +1,13 @@
[package]
name = "minifb"
version = "0.10.4"
version = "0.10.5"
license = "MIT/Apache-2.0"
authors = ["Daniel Collin <daniel@collin.com>"]
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"

View file

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