Skip to content

Commit

Permalink
Update to winit 0.18.0 + release glutin 0.19.0 (#1081)
Browse files Browse the repository at this point in the history
* Update to winit 0.18.0 + release glutin 0.19.0

* Update release date

* Actually bump glutin version
  • Loading branch information
francesca64 committed Nov 10, 2018
1 parent 3377691 commit 72e8c95
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Unreleased

# Version 0.19.0 (2018-11-09)

- **Breaking:** The entire API for headless contexts has been removed. Please instead use `Context::new()` when trying to make a context without a visible window. Also removed `headless` feature.
- **Breaking:** Types implementing the `GlContext` trait must now be sized.
- **Breaking:** Added new `CreationErrorPair` enum variant to enum `CreationError`.
- Remove requirement for EGL dev packages on Wayland.
- Update winit dependency to 0.18.0. See [winit's CHANGELOG](https://github.com/tomaka/winit/blob/v0.18.0/CHANGELOG.md#version-0180-2018-11-07) for more info.

# Version 0.18.0 (2018-08-03)

Expand Down
17 changes: 9 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "glutin"
version = "0.18.0"
authors = ["The glutin contributors, Pierre Krieger <[email protected]>"]
version = "0.19.0"
authors = ["The glutin contributors", "Pierre Krieger <[email protected]>"]
description = "Cross-platform OpenGL context provider."
keywords = ["windowing", "opengl"]
license = "Apache-2.0"
Expand All @@ -11,16 +11,17 @@ documentation = "https://docs.rs/glutin"
build = "build.rs"

[package.metadata.docs.rs]
features = ["icon_loading"]
features = ["icon_loading", "serde"]

[features]
icon_loading = ["winit/icon_loading"]
serde = ["winit/serde"]

[dependencies]
lazy_static = "1"
libc = "0.2"
shared_library = "0.1.0"
winit = "0.17.0"
winit = "0.18.0"

[build-dependencies]
gl_generator = "0.10"
Expand All @@ -34,12 +35,12 @@ objc = "0.2"
[target.'cfg(target_os = "macos")'.dependencies]
objc = "0.2"
cgl = "0.2"
cocoa = "0.17"
cocoa = "0.18.4"
core-foundation = "0.6"
core-graphics = "0.16"
core-graphics = "0.17.3"

[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3.2"
version = "0.3.6"
features = [
"winnt",
"winuser",
Expand All @@ -49,5 +50,5 @@ features = [

[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os="dragonfly", target_os="openbsd"))'.dependencies]
osmesa-sys = "0.1.0"
wayland-client = { version = "0.20.4", features = ["egl", "dlopen"] }
wayland-client = { version = "0.21", features = ["egl", "dlopen"] }
x11-dl = "2.18.3"

0 comments on commit 72e8c95

Please sign in to comment.