From 0ff68ee92e0305f93be212d46c00c708865a17b6 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sat, 7 Mar 2020 15:26:16 +0100 Subject: [PATCH] Bump version to 0.22.0 There are two PRs I'm aware of that should be relatively trivial to get merged, which would fix some issues. Other than those, I don't think it makes sense to wait on anything. - Fix Windows crash: https://github.com/rust-windowing/winit/pull/1459 - Fix macOS mouse reports: https://github.com/rust-windowing/winit/pull/1490 While #1459 seems pretty essential to actually make winit run, #1490 is much less important and can probably be ignored if there aren't any resources to merge it. --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bd417c95e..27d65cec0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Unreleased +# 0.22.0 (2020-03-07) - On Windows, fix minor timing issue in wait_until_time_or_msg - On macOS, fix `set_simple_screen` to remember frame excluding title bar. diff --git a/Cargo.toml b/Cargo.toml index 3ea410c913..71fb66f792 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "winit" -version = "0.21.0" +version = "0.22.0" authors = ["The winit contributors", "Pierre Krieger "] description = "Cross-platform window creation library." edition = "2018" diff --git a/README.md b/README.md index 1a3bdecfb2..cd8e837131 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ ```toml [dependencies] -winit = "0.21.0" +winit = "0.22.0" ``` ## [Documentation](https://docs.rs/winit)