From fc481b6d6da00563e862e9f6d117d684f27901ea Mon Sep 17 00:00:00 2001 From: Osspial Date: Wed, 6 Mar 2019 21:50:13 -0500 Subject: [PATCH] Update winit to 0.19.0 (#798) * Update winit to 0.19.0 * Update date for 0.19 --- CHANGELOG.md | 3 +++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2267774d..8036e74e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,9 @@ - `LoopDestroyed` is emitted when the `run` or `run_return` method is about to exit. - Rename `MonitorId` to `MonitorHandle`. - Removed `serde` implementations from `ControlFlow`. + +# 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. - On Wayland, fix `with_title()` not setting the windows title diff --git a/Cargo.toml b/Cargo.toml index 83b367a5..35343de2 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 19661019..217d5f20 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)