From fb1037d6d737959a8eadc5fb274e97df8c2a53c6 Mon Sep 17 00:00:00 2001 From: Osspial Date: Fri, 22 Feb 2019 09:36:05 -0500 Subject: [PATCH 1/2] Update winit to 0.19.0 --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abf8abe3f9..f34656560c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.19.0 (xxxx-xx-xx) + - On Wayland, fix `with_title()` not setting the windows title - On Wayland, add `set_wayland_theme()` to control client decoration color theme - Added serde serialization to `os::unix::XWindowType`. diff --git a/Cargo.toml b/Cargo.toml index 2e8ddeed13..59826be3a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "winit" -version = "0.18.1" +version = "0.19.0" authors = ["The winit contributors", "Pierre Krieger "] description = "Cross-platform window creation library." keywords = ["windowing"] diff --git a/README.md b/README.md index 0360e126dd..693c19e917 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ ```toml [dependencies] -winit = "0.18.1" +winit = "0.19.0" ``` ## [Documentation](https://docs.rs/winit) From 0cc0ea110ba3a10014812a7dff72a79c26e4c61a Mon Sep 17 00:00:00 2001 From: Osspial Date: Wed, 6 Mar 2019 21:49:59 -0500 Subject: [PATCH 2/2] Update date for 0.19 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80016ca9e1..4436a899f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Unreleased -# Version 0.19.0 (xxxx-xx-xx) +# Version 0.19.0 (2019-03-06) - On X11, we will use the faster `XRRGetScreenResourcesCurrent` function instead of `XRRGetScreenResources` when available. - On macOS, fix keycodes being incorrect when using a non-US keyboard layout.