Skip to content

Commit 30aa5a5

Browse files
sodiumjoefrancesca64
authored andcommitted
version 0.18.0 (#680)
* version 0.18.0 * Changelog: F16-F24 support was a breaking change * fix version in README * bump image dep * Updated release date
1 parent a46fcae commit 30aa5a5

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# Unreleased
22

3+
# Version 0.18.0 (2018-11-07)
4+
35
- **Breaking:** `image` crate upgraded to 0.20. This is exposed as part of the `icon_loading` API.
46
- On Wayland, pointer events will now provide the current modifiers state.
57
- On Wayland, titles will now be displayed in the window header decoration.
68
- On Wayland, key repetition is now ended when keyboard loses focus.
79
- On Wayland, windows will now use more stylish and modern client side decorations.
810
- On Wayland, windows will use server-side decorations when available.
9-
- Added support for F16-F24 keys.
11+
- **Breaking:** Added support for F16-F24 keys (variants were added to the `VirtualKeyCode` enum).
1012
- Fixed graphical glitches when resizing on Wayland.
1113
- On Windows, fix freezes when performing certain actions after a window resize has been triggered. Reintroduces some visual artifacts when resizing.
1214
- Updated window manager hints under X11 to v1.5 of [Extended Window Manager Hints](https://specifications.freedesktop.org/wm-spec/wm-spec-1.5.html#idm140200472629520).

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "winit"
3-
version = "0.17.2"
3+
version = "0.18.0"
44
authors = ["The winit contributors", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
55
description = "Cross-platform window creation library."
66
keywords = ["windowing"]
@@ -20,7 +20,7 @@ icon_loading = ["image"]
2020
lazy_static = "1"
2121
libc = "0.2"
2222
log = "0.4"
23-
image = { version = "0.20", optional = true }
23+
image = { version = "0.20.1", optional = true }
2424
serde = { version = "1", optional = true, features = ["serde_derive"] }
2525

2626
[target.'cfg(target_os = "android")'.dependencies.android_glue]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
```toml
99
[dependencies]
10-
winit = "0.17"
10+
winit = "0.18"
1111
```
1212

1313
## [Documentation](https://docs.rs/winit)

0 commit comments

Comments
 (0)