diff --git a/CHANGELOG.md b/CHANGELOG.md index bd039fe34c..18b0938cd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.32.0 + - **Breaking:** updated `raw-window-handle` dependency to `0.6`. - Bump MSRV from `1.65` to `1.70`. - Bump `windows-sys` from `0.48.0` to `0.52.0`. diff --git a/README.md b/README.md index 852e578fb2..2473be5e29 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,6 @@ A low-level library for OpenGL context creation. [![](https://img.shields.io/crates/v/glutin.svg)](https://crates.io/crates/glutin) [![Docs.rs](https://docs.rs/glutin/badge.svg)](https://docs.rs/glutin) -```toml -[dependencies] -glutin = "0.31.3" -``` - ## [Documentation](https://docs.rs/glutin) ## Contact Us diff --git a/glutin-winit/CHANGELOG.md b/glutin-winit/CHANGELOG.md index 70bd0d61d7..769ee6eb77 100644 --- a/glutin-winit/CHANGELOG.md +++ b/glutin-winit/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.5.0 + - **Breaking:** Update _winit_ to `0.30`. See [winit's CHANGELOG](https://github.com/rust-windowing/winit/releases/tag/v0.30.0) for more info. - Add the `GlutinEventLoop` trait to maintain compatibility with the now deprecated `EventLoop` but also support the new `ActiveEventLoop`. diff --git a/glutin-winit/Cargo.toml b/glutin-winit/Cargo.toml index 399187a95f..a27cd8ef77 100644 --- a/glutin-winit/Cargo.toml +++ b/glutin-winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin-winit" -version = "0.4.2" +version = "0.5.0" authors = ["Kirill Chibisov "] description = "Glutin bootstrapping helpers with winit" keywords = ["windowing", "opengl", "winit"] @@ -19,7 +19,7 @@ x11 = ["glutin/x11", "winit/x11"] wayland = ["glutin/wayland", "winit/wayland"] [dependencies] -glutin = { version = "0.31.0", path = "../glutin", default-features = false } +glutin = { version = "0.32.0", path = "../glutin", default-features = false } raw-window-handle = "0.6" winit = { version = "0.30.0", default-features = false, features = ["rwh_06"] } diff --git a/glutin/Cargo.toml b/glutin/Cargo.toml index be3a96465d..ecc94998cb 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.31.3" +version = "0.32.0" authors = ["Kirill Chibisov "] description = "Cross-platform OpenGL context provider." keywords = ["windowing", "opengl", "egl"] @@ -26,8 +26,8 @@ once_cell = "1.13" raw-window-handle = "0.6" [target.'cfg(windows)'.dependencies] -glutin_egl_sys = { version = "0.6.0", path = "../glutin_egl_sys", optional = true } -glutin_wgl_sys = { version = "0.5.0", path = "../glutin_wgl_sys", optional = true } +glutin_egl_sys = { version = "0.7.0", path = "../glutin_egl_sys", optional = true } +glutin_wgl_sys = { version = "0.6.0", path = "../glutin_wgl_sys", optional = true } [target.'cfg(windows)'.dependencies.windows-sys] version = "0.52" @@ -41,11 +41,11 @@ features = [ optional = true [target.'cfg(target_os = "android")'.dependencies] -glutin_egl_sys = { version = "0.6.0", path = "../glutin_egl_sys" } +glutin_egl_sys = { version = "0.7.0", 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.6.0", path = "../glutin_egl_sys", optional = true } -glutin_glx_sys = { version = "0.5.0", path = "../glutin_glx_sys", optional = true } +glutin_egl_sys = { version = "0.7.0", path = "../glutin_egl_sys", optional = true } +glutin_glx_sys = { version = "0.6.0", path = "../glutin_glx_sys", optional = true } wayland-sys = { version = "0.31.1", 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 579324082f..6a4e60f09d 100644 --- a/glutin_egl_sys/Cargo.toml +++ b/glutin_egl_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin_egl_sys" -version = "0.6.0" +version = "0.7.0" authors = ["Kirill Chibisov "] description = "The egl bindings for glutin" repository = "https://github.com/rust-windowing/glutin" diff --git a/glutin_gles2_sys/Cargo.toml b/glutin_gles2_sys/Cargo.toml index a8c5d99f62..05e50b83c6 100644 --- a/glutin_gles2_sys/Cargo.toml +++ b/glutin_gles2_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin_gles2_sys" -version = "0.5.0" +version = "0.6.0" authors = ["Kirill Chibisov "] description = "The gles2 bindings for glutin" repository = "https://github.com/rust-windowing/glutin" diff --git a/glutin_glx_sys/Cargo.toml b/glutin_glx_sys/Cargo.toml index 7262cf1988..682c69c211 100644 --- a/glutin_glx_sys/Cargo.toml +++ b/glutin_glx_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin_glx_sys" -version = "0.5.0" +version = "0.6.0" authors = ["Kirill Chibisov "] description = "The glx bindings for glutin" repository = "https://github.com/rust-windowing/glutin" diff --git a/glutin_wgl_sys/Cargo.toml b/glutin_wgl_sys/Cargo.toml index 9b9a29eb9f..d338897f81 100644 --- a/glutin_wgl_sys/Cargo.toml +++ b/glutin_wgl_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin_wgl_sys" -version = "0.5.0" +version = "0.6.0" authors = ["Kirill Chibisov "] description = "The wgl bindings for glutin" repository = "https://github.com/rust-windowing/glutin"