Skip to content

Commit c09160d

Browse files
authored
Bump version on master
This commit does not represent a release and only synchronizes CHANGELOG from the latest release. This also includes 0.30.8 sync, since it was forgotten.
1 parent 2230e71 commit c09160d

File tree

5 files changed

+27
-10
lines changed

5 files changed

+27
-10
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ name = "winit"
2121
readme = "README.md"
2222
repository.workspace = true
2323
rust-version.workspace = true
24-
version = "0.30.7"
24+
version = "0.30.9"
2525

2626
[package.metadata.docs.rs]
2727
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.7"
11+
winit = "0.30.9"
1212
```
1313

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

src/changelog/unreleased.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ changelog entry.
7171
- Added `Window::safe_area`, which describes the area of the surface that is unobstructed.
7272
- On X11, Wayland, Windows and macOS, improved scancode conversions for more obscure key codes.
7373
- Add ability to make non-activating window on macOS using `NSPanel` with `NSWindowStyleMask::NonactivatingPanel`.
74-
- `ActivationToken::from_raw` and `ActivationToken::into_raw`.
75-
- On X11, add a workaround for disabling IME on GNOME.
7674

7775
### Changed
7876

@@ -164,7 +162,6 @@ changelog entry.
164162
- Update `smol_str` to version `0.3`
165163
- Rename `VideoModeHandle` to `VideoMode`, now it only stores plain data.
166164
- Make `Fullscreen::Exclusive` contain `(MonitorHandle, VideoMode)`.
167-
- On Wayland, no longer send an explicit clearing `Ime::Preedit` just prior to a new `Ime::Preedit`.
168165
- Reworked the file drag-and-drop API.
169166

170167
The `WindowEvent::DroppedFile`, `WindowEvent::HoveredFile` and `WindowEvent::HoveredFileCancelled`
@@ -225,7 +222,3 @@ changelog entry.
225222
- On macOS, fixed the scancode conversion for audio volume keys.
226223
- On macOS, fixed the scancode conversion for `IntlBackslash`.
227224
- On macOS, fixed redundant `SurfaceResized` event at window creation.
228-
- On Windows, fixed the event loop not waking on accessibility requests.
229-
- On X11, fixed cursor grab mode state tracking on error.
230-
- On X11, fixed crash with uim
231-
- On iOS, maybe fixed high CPU usage even when using `ControlFlow::Wait`.

src/changelog/v0.30.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
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+
13+
## 0.30.8
14+
15+
### Added
16+
17+
- `ActivationToken::from_raw` and `ActivationToken::into_raw`.
18+
- On X11, add a workaround for disabling IME on GNOME.
19+
20+
### Fixed
21+
22+
- On Windows, fixed the event loop not waking on accessibility requests.
23+
- On X11, fixed cursor grab mode state tracking on error.
24+
125
## 0.30.7
226

327
### Fixed

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.7",
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)