diff --git a/CHANGELOG.md b/CHANGELOG.md index 03ed732..1021d1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This project follows semantic versioning. +### 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. + ### v0.10.1 (2017-08-15) - [fixed] Typo in the Redox implementation was fixed after changes in 0.10.0 diff --git a/Cargo.toml b/Cargo.toml index b87d81e..a0c86b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minifb" -version = "0.10.3" +version = "0.10.4" 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 c31a9e6..a965cca 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Usage ```toml # Cargo.toml [dependencies] -minifb = "0.10.3" +minifb = "0.10.4" ``` Example