diff --git a/CHANGELOG.md b/CHANGELOG.md index 946fe8ba..671e539f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.16.2 (2018-07-07) + - On Windows, non-resizable windows now have the maximization button disabled. This is consistent with behavior on macOS and popular X11 WMs. - Corrected incorrect `unreachable!` usage when guessing the DPI factor with no detected monitors. diff --git a/Cargo.toml b/Cargo.toml index 8198ed4b..00506751 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "winit" -version = "0.16.1" +version = "0.16.2" authors = ["The winit contributors, Pierre Krieger "] description = "Cross-platform window creation library." keywords = ["windowing"] @@ -57,5 +57,5 @@ features = [ wayland-client = { version = "0.20.6", features = [ "dlopen", "egl", "cursor"] } smithay-client-toolkit = "0.2.2" x11-dl = "2.17.5" -parking_lot = "0.5" +parking_lot = "0.6" percent-encoding = "1.0"