diff --git a/CHANGELOG.md b/CHANGELOG.md index 88fd3d7..03ed732 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This project follows semantic versioning. +### v0.10.1 (2017-08-15) + +- [fixed] Typo in the Redox implementation was fixed after changes in 0.10.0 + ### v0.10.0 (2017-08-11) - [changed] ```update_with_buffer``` Now make sures that input buffer will be large enough. As of this it now returns ```Result<>``` to indicate the status of the call. diff --git a/Cargo.toml b/Cargo.toml index 9c760a2..d6a9ad4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minifb" -version = "0.10.0" +version = "0.10.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 002a5a9..d96620a 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Usage ```toml # Cargo.toml [dependencies] -minifb = "0.10.0" +minifb = "0.10.1" ``` Example