Skip to content

Commit

Permalink
Glutin version v0.30.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kchibisov authored Sep 3, 2022
1 parent 5b775dc commit 0e37613
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 31 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.0-beta.1 (2022-09-03)

- Replace `winit` dependency with `raw-window-handle`.
- The Api is now built around `Display`, `Surface`, `Config`, and `Surface` for more info see crate documentation and examples.
- The ios support was removed for the lack of maintainance for now. In case there's a need for it, contributions are welcome.
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.29.1"
glutin = "0.30.0-beta.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.29.1).
find them [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.0-beta.1).

The examples use [gl_generator](https://crates.io/crates/gl_generator) to
generate OpenGL bindings.
Expand Down
16 changes: 8 additions & 8 deletions glutin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "glutin"
version = "0.29.1"
authors = ["The glutin contributors", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
version = "0.30.0-beta.1"
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
description = "Cross-platform OpenGL context provider."
keywords = ["windowing", "opengl", "egl", "glx", "wgl", "cgl"]
license = "Apache-2.0"
readme = "../README.md"
readme = "README.md"
repository = "https://github.com/rust-windowing/glutin"
documentation = "https://docs.rs/glutin"
rust-version = "1.57.0"
Expand All @@ -26,8 +26,8 @@ once_cell = "1.13"
raw-window-handle = "0.5.0"

[target.'cfg(target_os = "windows")'.dependencies]
glutin_egl_sys = { version = "0.1.6", path = "../glutin_egl_sys", optional = true }
glutin_wgl_sys = { version = "0.1.5", path = "../glutin_wgl_sys", optional = true }
glutin_egl_sys = { version = "0.1.7", path = "../glutin_egl_sys", optional = true }
glutin_wgl_sys = { version = "0.1.6", path = "../glutin_wgl_sys", optional = true }

[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.36"
Expand All @@ -41,11 +41,11 @@ features = [
optional = true

[target.'cfg(target_os = "android")'.dependencies]
glutin_egl_sys = { version = "0.1.6", path = "../glutin_egl_sys" }
glutin_egl_sys = { version = "0.1.7", 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.1.6", path = "../glutin_egl_sys", optional = true }
glutin_glx_sys = { version = "0.1.8", path = "../glutin_glx_sys", optional = true }
glutin_egl_sys = { version = "0.1.7", path = "../glutin_egl_sys", optional = true }
glutin_glx_sys = { version = "0.1.9", path = "../glutin_glx_sys", optional = true }
wayland-sys = { version = "0.30.0-beta.8", default-features = false, features = ["egl", "client", "dlopen"], optional = true }
x11-dl = { version = "2.20.0", optional = true }

Expand Down
8 changes: 4 additions & 4 deletions glutin_egl_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "glutin_egl_sys"
version = "0.1.6"
authors = ["The glutin contributors", "Hal Gentz <zegentzy@protonmail.com>"]
version = "0.1.7"
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
description = "The egl bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
license = "Apache-2.0"
readme = "README.md"
build = "build.rs"
edition = "2018"
rust-version = "1.57.0"
edition = "2021"

[build-dependencies]
gl_generator = "0.14"
Expand Down
8 changes: 4 additions & 4 deletions glutin_examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "glutin_examples"
version = "0.1.2"
authors = ["The glutin contributors", "Hal Gentz <zegentzy@protonmail.com>"]
version = "0.1.3"
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
description = "Examples for glutin"
repository = "https://github.com/rust-windowing/glutin"
license = "Apache-2.0"
readme = "../README.md"
build = "build.rs"
rust-version = "1.57.0"
edition = "2021"
publish = false

Expand All @@ -25,4 +25,4 @@ raw-window-handle = "0.5.0"

[build-dependencies]
gl_generator = "0.14"
cfg_aliases = "0.1.1"
cfg_aliases = "0.1.1"
10 changes: 5 additions & 5 deletions glutin_gles2_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "glutin_gles2_sys"
version = "0.1.5"
authors = ["The glutin contributors", "Hal Gentz <zegentzy@protonmail.com>"]
version = "0.1.6"
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
description = "The gles2 bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
license = "Apache-2.0"
readme = "README.md"
build = "build.rs"
edition = "2018"
rust-version = "1.57.0"
edition = "2021"

[build-dependencies]
gl_generator = "0.14"

[target.'cfg(target_os = "ios")'.dependencies]
objc = "0.2"
objc = "0.2.7"
8 changes: 4 additions & 4 deletions glutin_glx_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "glutin_glx_sys"
version = "0.1.8"
authors = ["The glutin contributors", "Hal Gentz <zegentzy@protonmail.com>"]
version = "0.1.9"
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
description = "The glx bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
license = "Apache-2.0"
readme = "README.md"
build = "build.rs"
edition = "2018"
rust-version = "1.57.0"
edition = "2021"

[build-dependencies]
gl_generator = "0.14"
Expand Down
8 changes: 4 additions & 4 deletions glutin_wgl_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "glutin_wgl_sys"
version = "0.1.5"
authors = ["The glutin contributors", "Hal Gentz <zegentzy@protonmail.com>"]
version = "0.1.6"
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
description = "The wgl bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
license = "Apache-2.0"
readme = "README.md"
build = "build.rs"
edition = "2018"
rust-version = "1.57.0"
edition = "2021"

[build-dependencies]
gl_generator = "0.14"

0 comments on commit 0e37613

Please sign in to comment.