Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3296c9a

Browse files
authoredJun 8, 2024··
Bump version on master
This commit does not represent a release and only synchronizes CHANGELOG from the latest release.
1 parent 9d38735 commit 3296c9a

File tree

9 files changed

+16
-17
lines changed

9 files changed

+16
-17
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
# Version 0.32.0
4+
35
- **Breaking:** updated `raw-window-handle` dependency to `0.6`.
46
- Bump MSRV from `1.65` to `1.70`.
57
- Bump `windows-sys` from `0.48.0` to `0.52.0`.

‎README.md

-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ A low-level library for OpenGL context creation.
55
[![](https://img.shields.io/crates/v/glutin.svg)](https://crates.io/crates/glutin)
66
[![Docs.rs](https://docs.rs/glutin/badge.svg)](https://docs.rs/glutin)
77

8-
```toml
9-
[dependencies]
10-
glutin = "0.31.3"
11-
```
12-
138
## [Documentation](https://docs.rs/glutin)
149

1510
## Contact Us

‎glutin-winit/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
# Version 0.5.0
4+
35
- **Breaking:** Update _winit_ to `0.30`. See [winit's CHANGELOG](https://github.com/rust-windowing/winit/releases/tag/v0.30.0) for more info.
46
- Add the `GlutinEventLoop` trait to maintain compatibility with the now
57
deprecated `EventLoop` but also support the new `ActiveEventLoop`.

‎glutin-winit/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin-winit"
3-
version = "0.4.2"
3+
version = "0.5.0"
44
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
55
description = "Glutin bootstrapping helpers with winit"
66
keywords = ["windowing", "opengl", "winit"]
@@ -19,7 +19,7 @@ x11 = ["glutin/x11", "winit/x11"]
1919
wayland = ["glutin/wayland", "winit/wayland"]
2020

2121
[dependencies]
22-
glutin = { version = "0.31.0", path = "../glutin", default-features = false }
22+
glutin = { version = "0.32.0", path = "../glutin", default-features = false }
2323
raw-window-handle = "0.6"
2424
winit = { version = "0.30.0", default-features = false, features = ["rwh_06"] }
2525

‎glutin/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin"
3-
version = "0.31.3"
3+
version = "0.32.0"
44
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
55
description = "Cross-platform OpenGL context provider."
66
keywords = ["windowing", "opengl", "egl"]
@@ -26,8 +26,8 @@ once_cell = "1.13"
2626
raw-window-handle = "0.6"
2727

2828
[target.'cfg(windows)'.dependencies]
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 }
29+
glutin_egl_sys = { version = "0.7.0", path = "../glutin_egl_sys", optional = true }
30+
glutin_wgl_sys = { version = "0.6.0", path = "../glutin_wgl_sys", optional = true }
3131

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

4343
[target.'cfg(target_os = "android")'.dependencies]
44-
glutin_egl_sys = { version = "0.6.0", path = "../glutin_egl_sys" }
44+
glutin_egl_sys = { version = "0.7.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.6.0", path = "../glutin_egl_sys", optional = true }
48-
glutin_glx_sys = { version = "0.5.0", path = "../glutin_glx_sys", optional = true }
47+
glutin_egl_sys = { version = "0.7.0", path = "../glutin_egl_sys", optional = true }
48+
glutin_glx_sys = { version = "0.6.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

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

‎glutin_gles2_sys/Cargo.toml

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

‎glutin_glx_sys/Cargo.toml

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

‎glutin_wgl_sys/Cargo.toml

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

0 commit comments

Comments
 (0)
Please sign in to comment.