Bump to 0.16.0

This commit is contained in:
Daniel Collin 2020-04-05 07:34:50 +02:00
parent d77e559b0f
commit ed24e436f0
3 changed files with 9 additions and 2 deletions

View file

@ -2,6 +2,13 @@
This project follows semantic versioning.
### v0.16 (2020-04-05)
- [added] Wayland support. (Big thanks to Antonino Siena add this support with assistance by Cole Helbling!)
- [added] Added `get_released_keys` (Thanks to Alex Melville!)
- [added] Added Topmost/Always on Top functionality to macOS (Thanks phillvancejr!)
- [fixed] Removed left over logging on macOS (Thanks phillvancejr!)
### v0.15.3 (2020-01-21)
- [Added] On macOS NSView (MTKView) is supplied with raw_window_handle now

View file

@ -1,6 +1,6 @@
[package]
name = "minifb"
version = "0.15.3"
version = "0.16.0"
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.3"
minifb = "0.16"
```
Example