diff --git a/CHANGELOG.md b/CHANGELOG.md index 96583bec8c..bfccf4909a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.30.10 + - Add `X11VisualInfo::visual_id` to get `XID` of the visual. - Added support for EGL on Windows using Angle. This assumes libEGL.dll/libGLESv2.dll present. - EGL's `Display::create_pbuffer_surface()` no longer sets the invalid `RENDER_BUFFER` attribute. diff --git a/README.md b/README.md index 570a281414..fb81c4cf94 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A low-level library for OpenGL context creation. ```toml [dependencies] -glutin = "0.30.9" +glutin = "0.30.10" ``` ## [Documentation](https://docs.rs/glutin) diff --git a/glutin/Cargo.toml b/glutin/Cargo.toml index defcdb3bdc..c9b328c61e 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.30.9" +version = "0.30.10" authors = ["Kirill Chibisov "] description = "Cross-platform OpenGL context provider." keywords = ["windowing", "opengl", "egl"] @@ -26,7 +26,7 @@ once_cell = "1.13" raw-window-handle = "0.5.0" [target.'cfg(windows)'.dependencies] -glutin_egl_sys = { version = "0.5.0", path = "../glutin_egl_sys", optional = true } +glutin_egl_sys = { version = "0.5.1", path = "../glutin_egl_sys", optional = true } glutin_wgl_sys = { version = "0.4.0", path = "../glutin_wgl_sys", optional = true } [target.'cfg(windows)'.dependencies.windows-sys] @@ -41,10 +41,10 @@ features = [ optional = true [target.'cfg(target_os = "android")'.dependencies] -glutin_egl_sys = { version = "0.5.0", path = "../glutin_egl_sys" } +glutin_egl_sys = { version = "0.5.1", path = "../glutin_egl_sys" } [target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "netbsd", target_os = "openbsd"))'.dependencies] -glutin_egl_sys = { version = "0.5.0", path = "../glutin_egl_sys", optional = true } +glutin_egl_sys = { version = "0.5.1", path = "../glutin_egl_sys", optional = true } glutin_glx_sys = { version = "0.4.0", path = "../glutin_glx_sys", optional = true } wayland-sys = { version = "0.30.0", default-features = false, features = ["egl", "client", "dlopen"], optional = true } x11-dl = { version = "2.20.0", optional = true } diff --git a/glutin_egl_sys/Cargo.toml b/glutin_egl_sys/Cargo.toml index 88ec8fb8ff..5c9b8072e5 100644 --- a/glutin_egl_sys/Cargo.toml +++ b/glutin_egl_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin_egl_sys" -version = "0.5.0" +version = "0.5.1" authors = ["Kirill Chibisov "] description = "The egl bindings for glutin" repository = "https://github.com/rust-windowing/glutin"