Bump to 0.15.1

This commit is contained in:
Daniel Collin 2019-12-27 13:28:49 +01:00
parent 745cfec45e
commit 5cf1708938
3 changed files with 6 additions and 2 deletions

View file

@ -2,6 +2,10 @@
This project follows semantic versioning.
### v0.15.1 (2019-12-27)
- [fixed] Fixed access to raw_window_handle()
### v0.15 (2019-12-16)
- [API BREAKAGE] - `update_with_buffer` now always take width and height parameters.

View file

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

View file

@ -13,7 +13,7 @@ Usage
```toml
# Cargo.toml
[dependencies]
minifb = "0.15"
minifb = "0.15.1"
```
Example