From 2bf4c248bf85f3fbe2d828def4e6510fe5c33f33 Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Sun, 27 Mar 2022 10:09:45 +0200 Subject: [PATCH] Bump version to 0.22 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80ebb1a..9771f1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This project follows semantic versioning. +### v0.22 (2022-03-27) + +- [fixed] Updated docs to make it a bit more clear that only one of `update_with_buffer` or `update` should be used for updating a window. + ### v0.21 (2022-03-27) - [fixed] Holding down a key on x11 would no repeat correctly diff --git a/Cargo.toml b/Cargo.toml index 3f46e24..95348ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minifb" -version = "0.21.0" +version = "0.22.0" license = "MIT OR Apache-2.0" authors = ["Daniel Collin "] description = "Cross-platform window setup with optional bitmap rendering" diff --git a/README.md b/README.md index 6a9e459..58a8b17 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Usage ```toml # Cargo.toml [dependencies] -minifb = "0.21" +minifb = "0.22" ``` Example