Bump to 0.12

This commit is contained in:
Daniel Collin 2019-07-21 11:06:04 +02:00
parent b62382bf0c
commit c3c9591788
3 changed files with 12 additions and 3 deletions

View file

@ -2,6 +2,14 @@
This project follows semantic versioning.
### v0.12 (2019-07-21)
- [changed] Linux/Unix backend rewritten in Rust (thanks Chris West!)
- [changed] WinAPI updated to 0.3 (Thanks Richard Hozák!)
- [changed] Bump orbclient to 0.3.20 on Redox, remove alpha handling hacks (Thanks Nagy Tibor!)
- [added] Window.is_key_released
### v0.11.2 (2018-12-19)
- [added] Window.is_key_released

View file

@ -1,13 +1,14 @@
[package]
name = "minifb"
version = "0.11.2"
version = "0.12"
license = "MIT/Apache-2.0"
authors = ["Daniel Collin <daniel@collin.com>"]
description = "Cross-platform window setup with optional bitmap rendering"
keywords = ["windowing", "window", "framebuffer"]
categories = ["rendering"]
repository = "https://github.com/emoon/rust_minifb"
documentation = "https://docs.rs/minifb/0.10.5/minifb"
documentation = "https://docs.rs/minifb/0.12/minifb"
maintenance = { status = "actively-developed" }
build = "build.rs"
readme = "README.md"

View file

@ -14,7 +14,7 @@ Usage
```toml
# Cargo.toml
[dependencies]
minifb = "0.11.2"
minifb = "0.12"
```
Example