Skip to content

Commit 27233f5

Browse files
committed
Bump version on master
This commit does not represent a release and only synchronizes CHANGELOG from the latest release.
1 parent f2ba687 commit 27233f5

5 files changed

Lines changed: 30 additions & 28 deletions

File tree

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ edition = "2024"
88
license = "Apache-2.0"
99
repository = "https://github.com/rust-windowing/winit"
1010
rust-version = "1.85"
11-
version = "0.31.0-beta.1"
11+
version = "0.31.0-beta.2"
1212

1313
[workspace.dependencies]
1414
# Workspace dependencies.
1515
# `winit` has no version here to allow using it in dev deps for docs.
1616
winit = { path = "winit" }
17-
winit-android = { version = "=0.31.0-beta.1", path = "winit-android" }
18-
winit-appkit = { version = "=0.31.0-beta.1", path = "winit-appkit" }
19-
winit-common = { version = "=0.31.0-beta.1", path = "winit-common" }
20-
winit-core = { version = "=0.31.0-beta.1", path = "winit-core" }
21-
winit-orbital = { version = "=0.31.0-beta.1", path = "winit-orbital" }
22-
winit-uikit = { version = "=0.31.0-beta.1", path = "winit-uikit" }
23-
winit-wayland = { version = "=0.31.0-beta.1", path = "winit-wayland", default-features = false }
24-
winit-web = { version = "=0.31.0-beta.1", path = "winit-web" }
25-
winit-win32 = { version = "=0.31.0-beta.1", path = "winit-win32" }
26-
winit-x11 = { version = "=0.31.0-beta.1", path = "winit-x11" }
17+
winit-android = { version = "=0.31.0-beta.2", path = "winit-android" }
18+
winit-appkit = { version = "=0.31.0-beta.2", path = "winit-appkit" }
19+
winit-common = { version = "=0.31.0-beta.2", path = "winit-common" }
20+
winit-core = { version = "=0.31.0-beta.2", path = "winit-core" }
21+
winit-orbital = { version = "=0.31.0-beta.2", path = "winit-orbital" }
22+
winit-uikit = { version = "=0.31.0-beta.2", path = "winit-uikit" }
23+
winit-wayland = { version = "=0.31.0-beta.2", path = "winit-wayland", default-features = false }
24+
winit-web = { version = "=0.31.0-beta.2", path = "winit-web" }
25+
winit-win32 = { version = "=0.31.0-beta.2", path = "winit-win32" }
26+
winit-x11 = { version = "=0.31.0-beta.2", path = "winit-x11" }
2727

2828
# Core dependencies.
2929
bitflags = "2"

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.31.0-beta.1"
11+
winit = "0.31.0-beta.2"
1212
```
1313

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

winit-android/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
//! with `cargo apk`, then the minimal changes would be:
6464
//! 1. Remove `ndk-glue` from your `Cargo.toml`
6565
//! 2. Enable the `"android-native-activity"` feature for Winit: `winit = { version =
66-
//! "0.31.0-beta.1", features = [ "android-native-activity" ] }`
66+
//! "0.31.0-beta.2", 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
6969
//! logging as above).

winit/src/changelog/unreleased.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,3 @@ The migration guide could reference other migration examples in the current
3939
changelog entry.
4040

4141
## Unreleased
42-
43-
### Added
44-
45-
- Add `EventLoopExtRegister::register_app` for being explicit about how the event loop runs on Web.
46-
- Add `EventLoopExtNeverReturn::run_app_never_return` for being explicit about how the event loop runs on iOS.
47-
48-
### Changed
49-
50-
- On Web, avoid throwing an exception in `EventLoop::run_app`, instead preferring to return to the caller.
51-
This requires passing a `'static` application to ensure that the application state will live as long as necessary.
52-
- On Web, the event loop can now always be re-created once it has finished running.
53-
54-
### Fixed
55-
56-
- Fixed panic when calling `Window::set_ime_allowed`.

winit/src/changelog/v0.31.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 0.31.0-beta.2
2+
3+
### Added
4+
5+
- Add `EventLoopExtRegister::register_app` for being explicit about how the event loop runs on Web.
6+
- Add `EventLoopExtNeverReturn::run_app_never_return` for being explicit about how the event loop runs on iOS.
7+
8+
### Changed
9+
10+
- On Web, avoid throwing an exception in `EventLoop::run_app`, instead preferring to return to the caller.
11+
This requires passing a `'static` application to ensure that the application state will live as long as necessary.
12+
- On Web, the event loop can now always be re-created once it has finished running.
13+
14+
### Fixed
15+
16+
- Fixed panic when calling `Window::set_ime_allowed`.
17+
118
## 0.31.0-beta.1
219

320
### Added

0 commit comments

Comments
 (0)