From a31a19337d46d235fbe6059d6b1cbd3459e1b2a9 Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Fri, 24 Jun 2016 13:14:46 +0200 Subject: [PATCH] Bump to 0.8.0 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a053ccf..ccb1b79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ This project follows semantic versioning. +### v0.8.0 (2016-06-24) + +- [added] ```window.set_title``` Can now change title after creation +- [added] ```window.set_cursor_style``` Can now change the style of the cursor with a number of (OS supported types) +- [added] Added cursor_title example code to show the newly added features + ### v0.7.1 (2016-05-27) - [fixed] Character callback wouldn't get called on Mac. diff --git a/Cargo.toml b/Cargo.toml index 266cce0..78fc1d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minifb" -version = "0.7.1" +version = "0.8.0" 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 ae2b9c9..ea6e899 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Usage ```toml # Cargo.toml [dependencies] -minifb = "0.7.1" +minifb = "0.8.0" ``` Example