Bump to 0.7.1

This commit is contained in:
Daniel Collin 2016-05-27 18:19:09 +02:00
parent 596c5a7097
commit b231ee1b5a
3 changed files with 6 additions and 2 deletions

View file

@ -2,6 +2,10 @@
This project follows semantic versioning. 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) ### v0.7.0 (2016-05-12)
- [changed] - Fully rewrote the Menu API. See the documentation/menu example for the changes. - [changed] - Fully rewrote the Menu API. See the documentation/menu example for the changes.

View file

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

View file

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