diff --git a/CHANGELOG.md b/CHANGELOG.md index e443ebd..42d8421 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Breaking Changes + +- This crate no longer specifies a specific raw-window-handle flag for winit. + This crate will maintain feature flags that allow picking whatever versions + winit is exposing. As of writing this note, the choices are `rwh_05` and + `rwh_06`. `rwh_05` was the feature that was activated in v0.2.0. + ### Changed - All `&Appplication` bounds now are `?Sized`, enabling `&dyn Application` diff --git a/Cargo.toml b/Cargo.toml index 873c93e..be22d5b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,6 +15,9 @@ wayland-csd-adwaita = ["winit/wayland-csd-adwaita"] x11 = ["winit/x11"] wayland = ["winit/wayland"] wayland-dlopen = ["winit/wayland-dlopen"] +rwh_06 = ["winit/rwh_06"] +rwh_05 = ["winit/rwh_05"] + [dependencies] -winit = { version = "0.29.3", default-features = false, features = ["rwh_05"] } +winit = { version = "0.29.3", default-features = false }