Skip to content

Commit 3891ed3

Browse files
authoredNov 12, 2022
Glutin version 0.30.1
1 parent 8212176 commit 3891ed3

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed
 

‎CHANGELOG.md

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

3+
# Version 0.30.1
4+
35
- Added new `glutin-winit` crate to help bootstrapping new `glutin` with `winit`.
46
- Added `EGLDevice` wrappers for EGL.
57
- Added EGL dependent api to make a context current without a surface.

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Apache License
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2020 The glutin contributors
189+
Copyright 2022 Kirill Chibisov
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

‎README.md

+2-2
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.0"
10+
glutin = "0.30.1"
1111
```
1212

1313
## [Documentation](https://docs.rs/glutin)
@@ -22,7 +22,7 @@ Join us in any of these:
2222
## Usage Examples
2323

2424
**Warning:** these are examples for master. For the latest released version you can
25-
find them [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.0).
25+
find them [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.1).
2626

2727
The examples use [gl_generator](https://crates.io/crates/gl_generator) to
2828
generate OpenGL bindings.

‎glutin-winit/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ wayland = ["glutin/wayland", "winit/wayland"]
1919

2020
[dependencies]
2121
winit = { version = "0.27.5", default-features = false }
22-
glutin = { version = "0.30.0", path = "../glutin", default-features = false }
22+
glutin = { version = "0.30.1", path = "../glutin", default-features = false }
2323
raw-window-handle = "0.5.0"
2424

2525
[build-dependencies]

‎glutin/Cargo.toml

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

2828
[target.'cfg(windows)'.dependencies]
29-
glutin_egl_sys = { version = "0.3.0", path = "../glutin_egl_sys", optional = true }
29+
glutin_egl_sys = { version = "0.3.1", path = "../glutin_egl_sys", optional = true }
3030
glutin_wgl_sys = { version = "0.3.0", path = "../glutin_wgl_sys", optional = true }
3131

3232
[target.'cfg(windows)'.dependencies.windows-sys]
@@ -41,10 +41,10 @@ features = [
4141
optional = true
4242

4343
[target.'cfg(target_os = "android")'.dependencies]
44-
glutin_egl_sys = { version = "0.3.0", path = "../glutin_egl_sys" }
44+
glutin_egl_sys = { version = "0.3.1", 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.3.0", path = "../glutin_egl_sys", optional = true }
47+
glutin_egl_sys = { version = "0.3.1", path = "../glutin_egl_sys", optional = true }
4848
glutin_glx_sys = { version = "0.3.0", path = "../glutin_glx_sys", optional = true }
4949
wayland-sys = { version = "=0.30.0-beta.12", default-features = false, features = ["egl", "client", "dlopen"], optional = true }
5050
x11-dl = { version = "2.20.0", optional = true }

‎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.3.0"
3+
version = "0.3.1"
44
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
55
description = "The egl bindings for glutin"
66
repository = "https://github.com/rust-windowing/glutin"

0 commit comments

Comments
 (0)