Bump to 0.6.0 as API changed (get_size added)

This commit is contained in:
Daniel Collin 2016-05-01 10:35:27 +02:00
parent 822403d1ed
commit 3c3dcd7c07
3 changed files with 6 additions and 2 deletions

View file

@ -2,6 +2,10 @@
This project follows semantic versioning.
### v0.6.0 (2016-05-01)
- [added] added ```get_size()``` to retrive the size of the window.
### v0.5.2 (2016-04-29)
- [fixed] On Mac shortcuts using F1-F12 wasn't working correctly.

View file

@ -1,6 +1,6 @@
[package]
name = "minifb"
version = "0.5.2"
version = "0.6.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.5.2"
minifb = "0.6.0"
```
Example