Bump to 0.10.1

This commit is contained in:
Daniel Collin 2017-08-15 22:09:31 +02:00
parent 3ffa7ad684
commit 89c38d8e64
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.10.1 (2017-08-15)
- [fixed] Typo in the Redox implementation was fixed after changes in 0.10.0
### v0.10.0 (2017-08-11) ### v0.10.0 (2017-08-11)
- [changed] ```update_with_buffer``` Now make sures that input buffer will be large enough. As of this it now returns ```Result<>``` to indicate the status of the call. - [changed] ```update_with_buffer``` Now make sures that input buffer will be large enough. As of this it now returns ```Result<>``` to indicate the status of the call.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "minifb" name = "minifb"
version = "0.10.0" version = "0.10.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.10.0" minifb = "0.10.1"
``` ```
Example Example