diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c3432c..a053ccf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This project follows semantic versioning. +### v0.7.1 (2016-05-27) + +- [fixed] Character callback wouldn't get called on Mac. + ### v0.7.0 (2016-05-12) - [changed] - Fully rewrote the Menu API. See the documentation/menu example for the changes. diff --git a/Cargo.toml b/Cargo.toml index 0f7f81e..08eca0a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minifb" -version = "0.7.0" +version = "0.7.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 45fa92d..ae2b9c9 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Usage ```toml # Cargo.toml [dependencies] -minifb = "0.7.0" +minifb = "0.7.1" ``` Example