Skip to content

Commit 90d86c5

Browse files
committed
Glutin version 0.31.0 & Glutin-winit version 0.4.2
1 parent 579af1d commit 90d86c5

File tree

9 files changed

+20
-23
lines changed

9 files changed

+20
-23
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
# Version 0.31.0
4+
35
- Bump MSRV from `1.60` to `1.65`.
46
- **Breaking:** `bitflags` which is used as a part of public API was updated to `2.0`.
57
- **Breaking:** `.*SurfaceAccessor` traits got removed; their methods now on respective `.*GlContext` traits instead.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A low-level library for OpenGL context creation.
77

88
```toml
99
[dependencies]
10-
glutin = "0.30.10"
10+
glutin = "0.31.0"
1111
```
1212

1313
## [Documentation](https://docs.rs/glutin)

glutin-winit/CHANGELOG.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
# Unreleased
22

3-
- **Breaking:** Update _winit_ to `0.29.2`. See [winit's CHANGELOG](https://github.com/rust-windowing/winit/releases/tag/v0.29.2) for more info.
4-
5-
# Version 0.4.1-beta
6-
7-
- **Breaking:** Update _winit_ to `0.29.1-beta`. See [winit's CHANGELOG](https://github.com/rust-windowing/winit/releases/tag/v0.29.1-beta) for more info.
3+
# Version 0.4.2
84

9-
# Version 0.4.0-beta.0
10-
11-
- **Breaking:** Update _winit_ to `0.29.0-beta.0`. See [winit's CHANGELOG](https://github.com/rust-windowing/winit/releases/tag/v0.29.0-beta.0) for more info.
5+
- **Breaking:** Update _glutin_ to `0.31.0`. See [glutin's CHANGELOG](https://github.com/rust-windowing/glutin/releases/tag/v0.31.0) for more info.
6+
- **Breaking:** Update _winit_ to `0.29.2`. See [winit's CHANGELOG](https://github.com/rust-windowing/winit/releases/tag/v0.29.2) for more info.
127
- **Breaking:** Fixed a typo in a type name (`ApiPrefence` -> `ApiPreference`).
138

149
# Version 0.3.0

glutin-winit/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin-winit"
3-
version = "0.4.1-beta"
3+
version = "0.4.2"
44
authors = ["Kirill Chibisov <[email protected]>"]
55
description = "Glutin bootstrapping helpers with winit"
66
keywords = ["windowing", "opengl", "winit"]
@@ -18,8 +18,8 @@ x11 = ["glutin/x11", "winit/x11"]
1818
wayland = ["glutin/wayland", "winit/wayland"]
1919

2020
[dependencies]
21-
glutin = { version = "0.30.10", path = "../glutin", default-features = false }
22-
raw-window-handle = "0.5"
21+
glutin = { version = "0.31.0", path = "../glutin", default-features = false }
22+
raw-window-handle = "0.5.2"
2323
winit = { version = "0.29.2", default-features = false, features = ["rwh_05"] }
2424

2525
[build-dependencies]

glutin/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin"
3-
version = "0.30.10"
3+
version = "0.31.0"
44
authors = ["Kirill Chibisov <[email protected]>"]
55
description = "Cross-platform OpenGL context provider."
66
keywords = ["windowing", "opengl", "egl"]
@@ -23,11 +23,11 @@ wayland = ["wayland-sys"]
2323
bitflags = "2.2.1"
2424
libloading = { version = "0.8.0", optional = true }
2525
once_cell = "1.13"
26-
raw-window-handle = "0.5.0"
26+
raw-window-handle = "0.5.2"
2727

2828
[target.'cfg(windows)'.dependencies]
29-
glutin_egl_sys = { version = "0.5.1", path = "../glutin_egl_sys", optional = true }
30-
glutin_wgl_sys = { version = "0.4.0", path = "../glutin_wgl_sys", optional = true }
29+
glutin_egl_sys = { version = "0.6.0", path = "../glutin_egl_sys", optional = true }
30+
glutin_wgl_sys = { version = "0.5.0", path = "../glutin_wgl_sys", optional = true }
3131

3232
[target.'cfg(windows)'.dependencies.windows-sys]
3333
version = "0.48"
@@ -41,11 +41,11 @@ features = [
4141
optional = true
4242

4343
[target.'cfg(target_os = "android")'.dependencies]
44-
glutin_egl_sys = { version = "0.5.1", path = "../glutin_egl_sys" }
44+
glutin_egl_sys = { version = "0.6.0", path = "../glutin_egl_sys" }
4545

4646
[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "netbsd", target_os = "openbsd"))'.dependencies]
47-
glutin_egl_sys = { version = "0.5.1", path = "../glutin_egl_sys", optional = true }
48-
glutin_glx_sys = { version = "0.4.0", path = "../glutin_glx_sys", optional = true }
47+
glutin_egl_sys = { version = "0.6.0", path = "../glutin_egl_sys", optional = true }
48+
glutin_glx_sys = { version = "0.5.0", path = "../glutin_glx_sys", optional = true }
4949
wayland-sys = { version = "0.31.1", default-features = false, features = ["egl", "client", "dlopen"], optional = true }
5050
x11-dl = { version = "2.20.0", optional = true }
5151

glutin_egl_sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin_egl_sys"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Kirill Chibisov <[email protected]>"]
55
description = "The egl bindings for glutin"
66
repository = "https://github.com/rust-windowing/glutin"

glutin_gles2_sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin_gles2_sys"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Kirill Chibisov <[email protected]>"]
55
description = "The gles2 bindings for glutin"
66
repository = "https://github.com/rust-windowing/glutin"

glutin_glx_sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin_glx_sys"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Kirill Chibisov <[email protected]>"]
55
description = "The glx bindings for glutin"
66
repository = "https://github.com/rust-windowing/glutin"

glutin_wgl_sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin_wgl_sys"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Kirill Chibisov <[email protected]>"]
55
description = "The wgl bindings for glutin"
66
repository = "https://github.com/rust-windowing/glutin"

0 commit comments

Comments
 (0)