Skip to content

Commit 1ae4f5c

Browse files
committed
Winit version 0.30.9
1 parent 501d9b4 commit 1ae4f5c

File tree

6 files changed

+21
-14
lines changed

6 files changed

+21
-14
lines changed

Diff for: .github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,12 @@ jobs:
107107

108108
- name: Generate lockfile
109109
# Also updates the crates.io index
110-
run: cargo generate-lockfile && cargo update -p ahash --precise 0.8.7 && cargo update -p bumpalo --precise 3.14.0
110+
run: |
111+
cargo generate-lockfile
112+
cargo update -p ahash --precise 0.8.7
113+
cargo update -p bumpalo --precise 3.14.0
114+
cargo update -p objc2-encode --precise 4.0.3
115+
cargo update -p orbclient --precise 0.3.47
111116
112117
- name: Install GCC Multilib
113118
if: (matrix.platform.os == 'ubuntu-latest') && contains(matrix.platform.target, 'i686')

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "winit"
3-
version = "0.30.8"
3+
version = "0.30.9"
44
authors = [
55
"The winit contributors",
66
"Pierre Krieger <[email protected]>",

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
```toml
1010
[dependencies]
11-
winit = "0.30.8"
11+
winit = "0.30.9"
1212
```
1313

1414
## [Documentation](https://docs.rs/winit)

Diff for: src/changelog/unreleased.md

-10
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,3 @@ The migration guide could reference other migration examples in the current
3939
changelog entry.
4040

4141
## Unreleased
42-
43-
### Changed
44-
45-
- On Wayland, no longer send an explicit clearing `Ime::Preedit` just prior to a new `Ime::Preedit`.
46-
47-
### Fixed
48-
49-
- On X11, fix crash with uim.
50-
- On X11, fix modifiers for keys that were sent by the same X11 request.
51-
- On iOS, fix high CPU usage even when using `ControlFlow::Wait`.

Diff for: src/changelog/v0.30.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.30.9
2+
3+
### Changed
4+
5+
- On Wayland, no longer send an explicit clearing `Ime::Preedit` just prior to a new `Ime::Preedit`.
6+
7+
### Fixed
8+
9+
- On X11, fix crash with uim.
10+
- On X11, fix modifiers for keys that were sent by the same X11 request.
11+
- On iOS, fix high CPU usage even when using `ControlFlow::Wait`.
12+
113
## 0.30.8
214

315
### Added

Diff for: src/platform/android.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
//! If your application is currently based on `NativeActivity` via the `ndk-glue` crate and building
6363
//! with `cargo apk`, then the minimal changes would be:
6464
//! 1. Remove `ndk-glue` from your `Cargo.toml`
65-
//! 2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.30.8",
65+
//! 2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.30.9",
6666
//! features = [ "android-native-activity" ] }`
6767
//! 3. Add an `android_main` entrypoint (as above), instead of using the '`[ndk_glue::main]` proc
6868
//! macro from `ndk-macros` (optionally add a dependency on `android_logger` and initialize

0 commit comments

Comments
 (0)