Version 0.5.1

This commit is contained in:
Daniel Collin 2016-04-25 18:18:33 +02:00
parent d000e199e5
commit 7865b87c14
3 changed files with 6 additions and 2 deletions

View file

@ -2,6 +2,10 @@
This project follows semantic versioning.
### v0.5.1 (2016-04-25)
- [fixed] ```get_window_handle``` would return an invalid value on Unix. Now fixed.
### v0.5.0 (2016-03-04)
- [changed] - Proper Errors which uses ```std::Error``` as base. ```Window::new``` uses this but the API itself hasn't changed.

View file

@ -1,6 +1,6 @@
[package]
name = "minifb"
version = "0.5.0"
version = "0.5.1"
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.0"
minifb = "0.5.1"
```
Example