Skip to content

Commit

Permalink
Glutin version 0.30.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kchibisov authored Nov 12, 2022
1 parent 8212176 commit 3891ed3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 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.1

- Added new `glutin-winit` crate to help bootstrapping new `glutin` with `winit`.
- Added `EGLDevice` wrappers for EGL.
- Added EGL dependent api to make a context current without a surface.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ Apache License
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2020 The glutin contributors
Copyright 2022 Kirill Chibisov

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
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.0"
glutin = "0.30.1"
```

## [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. For the latest released version you can
find them [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.0).
find them [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.1).

The examples use [gl_generator](https://crates.io/crates/gl_generator) to
generate OpenGL bindings.
Expand Down
2 changes: 1 addition & 1 deletion glutin-winit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ wayland = ["glutin/wayland", "winit/wayland"]

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

[build-dependencies]
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.0"
version = "0.30.1"
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
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.3.0", path = "../glutin_egl_sys", optional = true }
glutin_egl_sys = { version = "0.3.1", path = "../glutin_egl_sys", optional = true }
glutin_wgl_sys = { version = "0.3.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.3.0", path = "../glutin_egl_sys" }
glutin_egl_sys = { version = "0.3.1", 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.3.0", path = "../glutin_egl_sys", optional = true }
glutin_egl_sys = { version = "0.3.1", path = "../glutin_egl_sys", optional = true }
glutin_glx_sys = { version = "0.3.0", path = "../glutin_glx_sys", optional = true }
wayland-sys = { version = "=0.30.0-beta.12", 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.3.0"
version = "0.3.1"
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
description = "The egl bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
Expand Down

0 comments on commit 3891ed3

Please sign in to comment.