Skip to content

Commit

Permalink
Specify minimum supported version for RWH 0.4
Browse files Browse the repository at this point in the history
Winit uses raw-window-handle of version 0.4.3,
but only 0.4.0 was specified.
  • Loading branch information
kchibisov committed Sep 11, 2022
1 parent 156fa37 commit ad0520e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -12,6 +12,7 @@ And please only add new entries to the top of this list, right below the `# Unre
- On Windows, fixed default window features (ie snap, animations, shake, etc.) when decorations are disabled.
- On Windows, fixed ALT+Space shortcut to open window menu.
- On Wayland, fixed `Ime::Preedit` not being sent on IME reset.
- Fixed unbound version specified for `raw-window-handle` leading to compilation failures.

# 0.27.2 (2022-8-12)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -47,7 +47,7 @@ once_cell = "1.12"
log = "0.4"
serde = { version = "1", optional = true, features = ["serde_derive"] }
raw_window_handle = { package = "raw-window-handle", version = "0.5" }
raw_window_handle_04 = { package = "raw-window-handle", version = "0.4" }
raw_window_handle_04 = { package = "raw-window-handle", version = "0.4.3" }
bitflags = "1"
mint = { version = "0.5.6", optional = true }

Expand Down

0 comments on commit ad0520e

Please sign in to comment.