diff --git a/CHANGELOG.md b/CHANGELOG.md index e152d211..838fa68c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ # Unreleased +# Version 0.13.0 (2018-04-25) + - Implement `WindowBuilder::with_maximized`, `Window::set_fullscreen`, `Window::set_maximized` and `Window::set_decorations` for MacOS. - Implement `WindowBuilder::with_maximized`, `Window::set_fullscreen`, `Window::set_maximized` and `Window::set_decorations` for Windows. -- On Windows, `WindowBuilder::with_dimensions` no longer changing monitor display resolution. +- On Windows, `WindowBuilder::with_fullscreen` no longer changing monitor display resolution. - Overhauled X11 window geometry calculations. `get_position` and `set_position` are more universally accurate across different window managers, and `get_outer_size` actually works now. - Fixed SIGSEGV/SIGILL crashes on macOS caused by stabilization of the `!` (never) type. - Implement `WindowEvent::HiDPIFactorChanged` for macOS diff --git a/Cargo.toml b/Cargo.toml index a5e201fa..144ffca8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "winit" -version = "0.12.0" +version = "0.13.0" authors = ["The winit contributors, Pierre Krieger "] description = "Cross-platform window creation library." keywords = ["windowing"] diff --git a/README.md b/README.md index ecfc7504..70347764 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ ```toml [dependencies] -winit = "0.7" +winit = "0.13" ``` ## [Documentation](https://docs.rs/winit)