diff --git a/CHANGELOG.md b/CHANGELOG.md index 044b16b308..98a061ff38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.14.0 (2018-05-09) + - Created the `Copy`, `Paste` and `Cut` `VirtualKeyCode`s and added support for them on X11 and Wayland - Fix `.with_decorations(false)` in macOS - On Mac, `NSWindow` and supporting objects might be alive long after they were `closed` which resulted in apps consuming more heap then needed. Mainly it was affecting multi window applications. Not expecting any user visible change of behaviour after the fix. diff --git a/Cargo.toml b/Cargo.toml index 89dc078cf7..4b2b4f33b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "winit" -version = "0.13.1" +version = "0.14.0" authors = ["The winit contributors, Pierre Krieger "] description = "Cross-platform window creation library." keywords = ["windowing"] diff --git a/README.md b/README.md index 70347764e1..8be5b349dd 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ ```toml [dependencies] -winit = "0.13" +winit = "0.14" ``` ## [Documentation](https://docs.rs/winit)