Skip to content

Commit

Permalink
Glutin version 0.30.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kchibisov committed May 14, 2023
1 parent 083b867 commit 26e2d72
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
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.30.8

- Fixed EGL dereferencing raw window handles on everything but X11 in legacy `Window` and `Pixmap` surface creation.
- On GLX, fixed startup failure when passing default `Flush` with `KHR_context_flush_control`.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A low-level library for OpenGL context creation.

```toml
[dependencies]
glutin = "0.30.7"
glutin = "0.30.8"
```

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

**Warning:** These are examples for `master`. You can find examples for
the latest _released version_ [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.7).
the latest _released version_ [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.8).

The examples use [`gl_generator`](https://crates.io/crates/gl_generator) to
generate OpenGL bindings.
Expand Down
8 changes: 4 additions & 4 deletions glutin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin"
version = "0.30.7"
version = "0.30.8"
authors = ["Kirill Chibisov <[email protected]>"]
description = "Cross-platform OpenGL context provider."
keywords = ["windowing", "opengl", "egl"]
Expand All @@ -26,7 +26,7 @@ once_cell = "1.13"
raw-window-handle = "0.5.0"

[target.'cfg(windows)'.dependencies]
glutin_egl_sys = { version = "0.4.0", path = "../glutin_egl_sys", optional = true }
glutin_egl_sys = { version = "0.5.0", path = "../glutin_egl_sys", optional = true }
glutin_wgl_sys = { version = "0.4.0", path = "../glutin_wgl_sys", optional = true }

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

[target.'cfg(target_os = "android")'.dependencies]
glutin_egl_sys = { version = "0.4.0", path = "../glutin_egl_sys" }
glutin_egl_sys = { version = "0.5.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.4.0", path = "../glutin_egl_sys", optional = true }
glutin_egl_sys = { version = "0.5.0", path = "../glutin_egl_sys", optional = true }
glutin_glx_sys = { version = "0.4.0", path = "../glutin_glx_sys", optional = true }
wayland-sys = { version = "0.30.0", 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.4.0"
version = "0.5.0"
authors = ["Kirill Chibisov <[email protected]>"]
description = "The egl bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
Expand Down

0 comments on commit 26e2d72

Please sign in to comment.