Bump to 0.8.0

This commit is contained in:
Daniel Collin 2016-06-24 13:14:46 +02:00
parent 495f7c4cca
commit a31a19337d
3 changed files with 8 additions and 2 deletions

View file

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

View file

@ -1,6 +1,6 @@
[package]
name = "minifb"
version = "0.7.1"
version = "0.8.0"
license = "MIT/Apache-2.0"
authors = ["Daniel Collin <daniel@collin.com>"]
description = "Cross-platform window setup with optional bitmap rendering"

View file

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