From c3c95917882530704924c85ad0a65dab18d03cb3 Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Sun, 21 Jul 2019 11:06:04 +0200 Subject: [PATCH] Bump to 0.12 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 5 +++-- README.md | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fd9323..217603a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index f2fc770..2655821 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,14 @@ [package] name = "minifb" -version = "0.11.2" +version = "0.12" license = "MIT/Apache-2.0" authors = ["Daniel Collin "] 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" diff --git a/README.md b/README.md index 5ba37e2..d5719bb 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Usage ```toml # Cargo.toml [dependencies] -minifb = "0.11.2" +minifb = "0.12" ``` Example