Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Glutin version 0.32.0 #1682

Merged
merged 2 commits into from
Jun 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions glutin-winit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down
4 changes: 2 additions & 2 deletions glutin-winit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin-winit"
version = "0.4.2"
version = "0.5.0"
authors = ["Kirill Chibisov <[email protected]>"]
description = "Glutin bootstrapping helpers with winit"
keywords = ["windowing", "opengl", "winit"]
Expand All @@ -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"] }

Expand Down
12 changes: 6 additions & 6 deletions glutin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin"
version = "0.31.3"
version = "0.32.0"
authors = ["Kirill Chibisov <[email protected]>"]
description = "Cross-platform OpenGL context provider."
keywords = ["windowing", "opengl", "egl"]
Expand All @@ -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"
Expand All @@ -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 }

Expand Down
2 changes: 1 addition & 1 deletion glutin_egl_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin_egl_sys"
version = "0.6.0"
version = "0.7.0"
authors = ["Kirill Chibisov <[email protected]>"]
description = "The egl bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
Expand Down
2 changes: 0 additions & 2 deletions glutin_egl_sys/src/egl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,6 @@ pub const TEXTURE_Y_U_V_WL: i32 = 0x31D7;
pub const TEXTURE_Y_UV_WL: i32 = 0x31D8;
pub const TEXTURE_Y_XUXV_WL: i32 = 0x31D9;
pub const TEXTURE_EXTERNAL_WL: i32 = 0x31DA;
// Accepted in the <attribute> parameter of eglQueryWaylandBufferWL.
pub const EGL_TEXTURE_FORMAT: i32 = 0x3080;
pub const WAYLAND_Y_INVERTED_WL: i32 = 0x31DB;

#[allow(non_snake_case)]
Expand Down
2 changes: 1 addition & 1 deletion glutin_gles2_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin_gles2_sys"
version = "0.5.0"
version = "0.6.0"
authors = ["Kirill Chibisov <[email protected]>"]
description = "The gles2 bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
Expand Down
2 changes: 1 addition & 1 deletion glutin_glx_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin_glx_sys"
version = "0.5.0"
version = "0.6.0"
authors = ["Kirill Chibisov <[email protected]>"]
description = "The glx bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
Expand Down
2 changes: 1 addition & 1 deletion glutin_wgl_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin_wgl_sys"
version = "0.5.0"
version = "0.6.0"
authors = ["Kirill Chibisov <[email protected]>"]
description = "The wgl bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
Expand Down
Loading