diff --git a/CHANGELOG.md b/CHANGELOG.md index 3823a9530c..dbc9d981c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.25.1 (2020-10-10) + - X11 and Wayland are now optional features (enabled by default) # Version 0.25.0 (2020-10-02) @@ -57,7 +59,7 @@ # Version 0.20.1 (2019-08-08) - - **Backport:** We now load `libGL.so` instead of `libGLX.so`. + - **Backport:** We now load `libGL.so` instead of `libGLX.so`. # Version 0.22.0-alpha1 (2019-06-21) @@ -106,7 +108,7 @@ - "Fixed" bug where we will close `EGLDisplay`s while they are still in use by others. Angry and/or salty rant can be found in `glutin/src/api/egl/mod.rs`, you can't miss it. - - **Breaking**: `WindowedContext`s now deref to `Context`, not `Window`. + - **Breaking**: `WindowedContext`s now deref to `Context`, not `Window`. Please use `.window()` to access the window. # Version 0.20.0 (2019-03-09) diff --git a/glutin/Cargo.toml b/glutin/Cargo.toml index 301ea22330..70e8254f08 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.25.0" +version = "0.25.1" authors = ["The glutin contributors", "Pierre Krieger "] description = "Cross-platform OpenGL context provider." keywords = ["windowing", "opengl"]