From 911fad0af0a3c88c52f60c72d43159a8ccfb4937 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sat, 17 May 2025 14:07:00 +0900 Subject: [PATCH] Winit version 0.30.11 --- Cargo.toml | 2 +- README.md | 2 +- src/changelog/unreleased.md | 5 ----- src/changelog/v0.30.md | 7 +++++++ src/platform/android.rs | 2 +- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index baee02c4a..b914b5e41 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "winit" -version = "0.30.10" +version = "0.30.11" authors = [ "The winit contributors", "Pierre Krieger ", diff --git a/README.md b/README.md index bae58e404..4fc5b7f8e 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ```toml [dependencies] -winit = "0.30.10" +winit = "0.30.11" ``` ## [Documentation](https://docs.rs/winit) diff --git a/src/changelog/unreleased.md b/src/changelog/unreleased.md index 409485329..f3a0f6d2c 100644 --- a/src/changelog/unreleased.md +++ b/src/changelog/unreleased.md @@ -39,8 +39,3 @@ The migration guide could reference other migration examples in the current changelog entry. ## Unreleased - -### Fixed - -- On Windows, fixed crash in should_apps_use_dark_mode() for Windows versions < 17763. -- On Wayland, fixed `pump_events` driven loop deadlocking when loop was not drained before exit. diff --git a/src/changelog/v0.30.md b/src/changelog/v0.30.md index 41bd5b571..76fef7626 100644 --- a/src/changelog/v0.30.md +++ b/src/changelog/v0.30.md @@ -1,3 +1,10 @@ +## 0.30.11 + +### Fixed + +- On Windows, fixed crash in should_apps_use_dark_mode() for Windows versions < 17763. +- On Wayland, fixed `pump_events` driven loop deadlocking when loop was not drained before exit. + ## 0.30.10 ### Added diff --git a/src/platform/android.rs b/src/platform/android.rs index 1a8c2cd5c..65d671702 100644 --- a/src/platform/android.rs +++ b/src/platform/android.rs @@ -62,7 +62,7 @@ //! If your application is currently based on `NativeActivity` via the `ndk-glue` crate and building //! with `cargo apk`, then the minimal changes would be: //! 1. Remove `ndk-glue` from your `Cargo.toml` -//! 2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.30.10", +//! 2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.30.11", //! features = [ "android-native-activity" ] }` //! 3. Add an `android_main` entrypoint (as above), instead of using the '`[ndk_glue::main]` proc //! macro from `ndk-macros` (optionally add a dependency on `android_logger` and initialize