Skip to content

Commit e2b883d

Browse files
authored
Bump version on master
This commit does not represent a release and only synchronizes CHANGELOG from the latest release.
1 parent 38fd3c6 commit e2b883d

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ name = "winit"
117117
readme = "README.md"
118118
repository.workspace = true
119119
rust-version.workspace = true
120-
version = "0.30.10"
120+
version = "0.30.11"
121121

122122
[package.metadata.docs.rs]
123123
features = [

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
```toml
1010
[dependencies]
11-
winit = "0.30.10"
11+
winit = "0.30.11"
1212
```
1313

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

src/changelog/unreleased.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,5 +248,3 @@ changelog entry.
248248
- On macOS, fixed the scancode conversion for audio volume keys.
249249
- On macOS, fixed the scancode conversion for `IntlBackslash`.
250250
- On macOS, fixed redundant `SurfaceResized` event at window creation.
251-
- On Windows, fixed crash in should_apps_use_dark_mode() for Windows versions < 17763.
252-
- On Wayland, fixed `pump_events` driven loop deadlocking when loop was not drained before exit.

src/changelog/v0.30.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.30.11
2+
3+
### Fixed
4+
5+
- On Windows, fixed crash in should_apps_use_dark_mode() for Windows versions < 17763.
6+
- On Wayland, fixed `pump_events` driven loop deadlocking when loop was not drained before exit.
7+
18
## 0.30.10
29

310
### Added

src/platform/android.rs

Lines changed: 1 addition & 1 deletion
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.10",
65+
//! 2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.30.11",
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)