From c28e25d2a06352313e473563fbc935236706eb0c Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sun, 22 Dec 2024 23:06:00 +0300 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 | 1 - src/changelog/v0.30.md | 6 ++++++ src/platform/android.rs | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dda9d8d9cf..e44ee1b084 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ name = "winit" readme = "README.md" repository.workspace = true rust-version.workspace = true -version = "0.30.6" +version = "0.30.7" [package.metadata.docs.rs] features = [ diff --git a/README.md b/README.md index 50c8a2ac49..35a8b33c9d 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 c1eadf59f6..a835e0c944 100644 --- a/src/changelog/unreleased.md +++ b/src/changelog/unreleased.md @@ -200,4 +200,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 X11, fixed KeyboardInput delivered twice when IME enabled. diff --git a/src/changelog/v0.30.md b/src/changelog/v0.30.md index 399b32ffa1..1ba27f7be2 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 a65fe2f3b3..5bd1d2f9bc 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