Bump to 0.15.3

This commit is contained in:
Daniel Collin 2020-01-21 22:13:19 +01:00
parent acc25a0176
commit 882e7bc7ad
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.15.3 (2020-01-21)
- [Added] On macOS NSView (MTKView) is supplied with raw_window_handle now
### v0.15.2 (2020-01-21) ### v0.15.2 (2020-01-21)
- [fixed] Fixed forever block on macOS when using `update` and not `update_with_buffer` - [fixed] Fixed forever block on macOS when using `update` and not `update_with_buffer`

View file

@ -1,6 +1,6 @@
[package] [package]
name = "minifb" name = "minifb"
version = "0.15.2" version = "0.15.3"
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

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