Skip to content

Commit

Permalink
Bump version on master
Browse files Browse the repository at this point in the history
This commit does not represent a release and only synchronizes CHANGELOG
from the latest release.
  • Loading branch information
kchibisov authored Jan 12, 2025
1 parent a60959a commit 73ce4f9
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 11 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
# Unreleased

- **Breaking:** Added `make_current_surfaceless(self)` for `{Possibly,Not}CurrentGlContext`.

# Version 0.32.2

- Added `PossiblyCurrentContext::make_not_current_in_place(&self)` for when `Send` capability of `NotCurrentContext` is not required.
- Added `NotCurrentContext::make_current_surfaceless(self)` and
`PossiblyCurrentContext::make_current_surfaceless(&self)` in the `Cgl`
implementation to allow the use of surfaceless contexts on MacOS.
- Added `NotCurrentContext::make_current_surfaceless(self)` and
`PossiblyCurrentContext::make_current_surfaceless(&self)` in the `Glx`
implementation to allow the use of surfaceless contexts with GLX.
- Added `NotCurrentContext::make_current_surfaceless(self)` and
`PossiblyCurrentContext::make_current_surfaceless(&self)` in the `Wgl`
implementation to allow the use of surfaceless contexts with WGL.
- Added workaround for EGL drivers reporting `EGL_KHR_platform_gbm` without EGL 1.5 client.
- **Breaking:** Added `make_current_surfaceless(self)` for `{Possibly,Not}CurrentGlContext`.
- Added `GlContext::priority`/`ContextAttributesBuilder::with_priority` to get/set context priority.

# Version 0.32.1
Expand Down
12 changes: 6 additions & 6 deletions glutin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin"
version = "0.32.1"
version = "0.32.2"
authors = ["Kirill Chibisov <[email protected]>"]
description = "Cross-platform OpenGL context provider."
keywords = ["windowing", "opengl", "egl"]
Expand All @@ -26,8 +26,8 @@ once_cell = "1.13"
raw-window-handle = "0.6.2"

[target.'cfg(windows)'.dependencies]
glutin_egl_sys = { version = "0.7.0", path = "../glutin_egl_sys", optional = true }
glutin_wgl_sys = { version = "0.6.0", path = "../glutin_wgl_sys", optional = true }
glutin_egl_sys = { version = "0.7.1", path = "../glutin_egl_sys", optional = true }
glutin_wgl_sys = { version = "0.6.1", path = "../glutin_wgl_sys", optional = true }

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

[target.'cfg(target_os = "android")'.dependencies]
glutin_egl_sys = { version = "0.7.0", path = "../glutin_egl_sys" }
glutin_egl_sys = { version = "0.7.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.7.0", path = "../glutin_egl_sys", optional = true }
glutin_glx_sys = { version = "0.6.0", path = "../glutin_glx_sys", optional = true }
glutin_egl_sys = { version = "0.7.1", path = "../glutin_egl_sys", optional = true }
glutin_glx_sys = { version = "0.6.1", path = "../glutin_glx_sys", optional = true }
wayland-sys = { version = "0.31.1", 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.7.0"
version = "0.7.1"
authors = ["Kirill Chibisov <[email protected]>"]
description = "The egl bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
Expand Down
2 changes: 1 addition & 1 deletion glutin_gles2_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin_gles2_sys"
version = "0.6.0"
version = "0.6.1"
authors = ["Kirill Chibisov <[email protected]>"]
description = "The gles2 bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
Expand Down
2 changes: 1 addition & 1 deletion glutin_glx_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin_glx_sys"
version = "0.6.0"
version = "0.6.1"
authors = ["Kirill Chibisov <[email protected]>"]
description = "The glx bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
Expand Down
2 changes: 1 addition & 1 deletion glutin_wgl_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin_wgl_sys"
version = "0.6.0"
version = "0.6.1"
authors = ["Kirill Chibisov <[email protected]>"]
description = "The wgl bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
Expand Down

0 comments on commit 73ce4f9

Please sign in to comment.