diff --git a/CHANGELOG.md b/CHANGELOG.md index 678702014b..405b6567d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.30.0-beta.3 + - `Config` doesn't force OpenGL `Api` by default. - `Display::create_context` now uses the most recent available `Api` from the `Config` when `ContextApi` is not specified in `ContextAttributes`. - **Breaking:** `PossiblyCurrentGlContext::get_proc_address` method was moved to `GlDisplay::get_proc_address`. diff --git a/README.md b/README.md index 358c9edac8..7fe45020d8 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A low-level library for OpenGL context creation. ```toml [dependencies] -glutin = "0.30.0-beta.2" +glutin = "0.30.0-beta.3" ``` ## [Documentation](https://docs.rs/glutin) @@ -22,7 +22,7 @@ Join us in any of these: ## Usage Examples **Warning:** these are examples for master. For the latest released version you can -find them [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.0-beta.2). +find them [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.0-beta.3). The examples use [gl_generator](https://crates.io/crates/gl_generator) to generate OpenGL bindings. diff --git a/glutin/Cargo.toml b/glutin/Cargo.toml index 1e2b1719aa..ec5f08abf8 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.30.0-beta.2" +version = "0.30.0-beta.3" 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.5.0" [target.'cfg(windows)'.dependencies] -glutin_egl_sys = { version = "0.2.0", path = "../glutin_egl_sys", optional = true } -glutin_wgl_sys = { version = "0.2.0", path = "../glutin_wgl_sys", optional = true } +glutin_egl_sys = { version = "0.3.0", path = "../glutin_egl_sys", optional = true } +glutin_wgl_sys = { version = "0.3.0", path = "../glutin_wgl_sys", optional = true } [target.'cfg(windows)'.dependencies.windows-sys] version = "0.36" @@ -41,11 +41,11 @@ features = [ optional = true [target.'cfg(target_os = "android")'.dependencies] -glutin_egl_sys = { version = "0.2.0", path = "../glutin_egl_sys" } +glutin_egl_sys = { version = "0.3.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.2.0", path = "../glutin_egl_sys", optional = true } -glutin_glx_sys = { version = "0.2.0", path = "../glutin_glx_sys", optional = true } +glutin_egl_sys = { version = "0.3.0", path = "../glutin_egl_sys", optional = true } +glutin_glx_sys = { version = "0.3.0", path = "../glutin_glx_sys", optional = true } wayland-sys = { version = "0.30.0-beta.8", 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 2c5557442e..648b1480ae 100644 --- a/glutin_egl_sys/Cargo.toml +++ b/glutin_egl_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin_egl_sys" -version = "0.2.0" +version = "0.3.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 de62017fb8..17f1683b86 100644 --- a/glutin_gles2_sys/Cargo.toml +++ b/glutin_gles2_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin_gles2_sys" -version = "0.2.0" +version = "0.3.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 c151b10d12..f4a2244e06 100644 --- a/glutin_glx_sys/Cargo.toml +++ b/glutin_glx_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin_glx_sys" -version = "0.2.0" +version = "0.3.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 0ff5c4301d..3a52047819 100644 --- a/glutin_wgl_sys/Cargo.toml +++ b/glutin_wgl_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin_wgl_sys" -version = "0.2.0" +version = "0.3.0" authors = ["Kirill Chibisov "] description = "The wgl bindings for glutin" repository = "https://github.com/rust-windowing/glutin"