From e2b883d2151f14d08c0492efba61a57f10409b9b Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Wed, 21 May 2025 18:04:10 +0900 Subject: [PATCH] Bump version on master This commit does not represent a release and only synchronizes CHANGELOG from the latest release. --- Cargo.toml | 2 +- README.md | 2 +- src/changelog/unreleased.md | 2 -- src/changelog/v0.30.md | 7 +++++++ src/platform/android.rs | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4ea457a3..ba405f35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -117,7 +117,7 @@ name = "winit" readme = "README.md" repository.workspace = true rust-version.workspace = true -version = "0.30.10" +version = "0.30.11" [package.metadata.docs.rs] features = [ diff --git a/README.md b/README.md index 4aab5efb..bf7ea93b 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 bf6f2a6b..67ea9349 100644 --- a/src/changelog/unreleased.md +++ b/src/changelog/unreleased.md @@ -248,5 +248,3 @@ changelog entry. - On macOS, fixed the scancode conversion for audio volume keys. - On macOS, fixed the scancode conversion for `IntlBackslash`. - On macOS, fixed redundant `SurfaceResized` event at window creation. -- 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 f551a0df..723cb824 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 d2250ed3..75c7e24f 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