From 9cbce055d35d1270e7e4cc43ba4c81fffa6d1bb9 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sun, 22 Dec 2024 22:29:58 +0300 Subject: [PATCH] Winit version 0.30.7 --- Cargo.toml | 2 +- README.md | 2 +- src/changelog/unreleased.md | 4 ---- src/changelog/v0.30.md | 6 ++++++ src/platform/android.rs | 2 +- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 34e2b6d7f5..33d429f671 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "winit" -version = "0.30.6" +version = "0.30.7" authors = [ "The winit contributors", "Pierre Krieger ", diff --git a/README.md b/README.md index 236fa7d7a9..88d7403200 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ```toml [dependencies] -winit = "0.30.6" +winit = "0.30.7" ``` ## [Documentation](https://docs.rs/winit) diff --git a/src/changelog/unreleased.md b/src/changelog/unreleased.md index b9c461aed8..f3a0f6d2c3 100644 --- a/src/changelog/unreleased.md +++ b/src/changelog/unreleased.md @@ -39,7 +39,3 @@ The migration guide could reference other migration examples in the current changelog entry. ## Unreleased - -### Fixed - -- On X11, fixed KeyboardInput delivered twice when IME enabled. diff --git a/src/changelog/v0.30.md b/src/changelog/v0.30.md index b51aaa95f6..3ff54b508d 100644 --- a/src/changelog/v0.30.md +++ b/src/changelog/v0.30.md @@ -1,3 +1,9 @@ +## 0.30.7 + +### Fixed + +- On X11, fixed KeyboardInput delivered twice when IME enabled. + ## 0.30.6 ### Added diff --git a/src/platform/android.rs b/src/platform/android.rs index 5313215137..dc3a111201 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.6", +//! 2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.30.7", //! 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