mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-01-11 13:31:29 +11:00
Remove MSRV guarantee (#746)
* Remove MSRV guarantee * Update CHANGELOG
This commit is contained in:
parent
139686ddce
commit
4584e7629a
15
.travis.yml
15
.travis.yml
|
@ -19,12 +19,6 @@ matrix:
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
packages: *i686_packages
|
packages: *i686_packages
|
||||||
- env: TARGET=i686-unknown-linux-gnu
|
|
||||||
os: linux
|
|
||||||
rust: 1.28.0
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
packages: *i686_packages
|
|
||||||
|
|
||||||
# Linux 64bit
|
# Linux 64bit
|
||||||
- env: TARGET=x86_64-unknown-linux-gnu
|
- env: TARGET=x86_64-unknown-linux-gnu
|
||||||
|
@ -33,9 +27,6 @@ matrix:
|
||||||
- env: TARGET=x86_64-unknown-linux-gnu
|
- env: TARGET=x86_64-unknown-linux-gnu
|
||||||
os: linux
|
os: linux
|
||||||
rust: stable
|
rust: stable
|
||||||
- env: TARGET=x86_64-unknown-linux-gnu
|
|
||||||
os: linux
|
|
||||||
rust: 1.28.0
|
|
||||||
|
|
||||||
# macOS
|
# macOS
|
||||||
- env: TARGET=x86_64-apple-darwin
|
- env: TARGET=x86_64-apple-darwin
|
||||||
|
@ -44,9 +35,6 @@ matrix:
|
||||||
- env: TARGET=x86_64-apple-darwin
|
- env: TARGET=x86_64-apple-darwin
|
||||||
os: osx
|
os: osx
|
||||||
rust: stable
|
rust: stable
|
||||||
- env: TARGET=x86_64-apple-darwin
|
|
||||||
os: osx
|
|
||||||
rust: 1.28.0
|
|
||||||
|
|
||||||
# iOS
|
# iOS
|
||||||
- env: TARGET=x86_64-apple-ios
|
- env: TARGET=x86_64-apple-ios
|
||||||
|
@ -55,9 +43,6 @@ matrix:
|
||||||
- env: TARGET=x86_64-apple-ios
|
- env: TARGET=x86_64-apple-ios
|
||||||
os: osx
|
os: osx
|
||||||
rust: stable
|
rust: stable
|
||||||
- env: TARGET=x86_64-apple-ios
|
|
||||||
os: osx
|
|
||||||
rust: 1.28.0
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- rustup self update
|
- rustup self update
|
||||||
|
|
|
@ -19,10 +19,10 @@
|
||||||
- On macOS, fixed unsoundness in drag-and-drop that could result in drops being rejected.
|
- On macOS, fixed unsoundness in drag-and-drop that could result in drops being rejected.
|
||||||
- On macOS, implemented `WindowEvent::Refresh`.
|
- On macOS, implemented `WindowEvent::Refresh`.
|
||||||
- On macOS, all `MouseCursor` variants are now implemented and the cursor will no longer reset after unfocusing.
|
- On macOS, all `MouseCursor` variants are now implemented and the cursor will no longer reset after unfocusing.
|
||||||
|
- Removed minimum supported Rust version guarantee.
|
||||||
|
|
||||||
# Version 0.18.0 (2018-11-07)
|
# Version 0.18.0 (2018-11-07)
|
||||||
|
|
||||||
- **Breaking:** minimum supported Rust version increased to 1.28.0.
|
|
||||||
- **Breaking:** `image` crate upgraded to 0.20. This is exposed as part of the `icon_loading` API.
|
- **Breaking:** `image` crate upgraded to 0.20. This is exposed as part of the `icon_loading` API.
|
||||||
- On Wayland, pointer events will now provide the current modifiers state.
|
- On Wayland, pointer events will now provide the current modifiers state.
|
||||||
- On Wayland, titles will now be displayed in the window header decoration.
|
- On Wayland, titles will now be displayed in the window header decoration.
|
||||||
|
|
|
@ -41,7 +41,7 @@ fn main() {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that winit requires Rust 1.28.0 or later.
|
Winit is only officially supported on the latest stable version of the Rust compiler.
|
||||||
|
|
||||||
### Cargo Features
|
### Cargo Features
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,6 @@ environment:
|
||||||
CHANNEL: nightly
|
CHANNEL: nightly
|
||||||
- TARGET: x86_64-pc-windows-msvc
|
- TARGET: x86_64-pc-windows-msvc
|
||||||
CHANNEL: stable
|
CHANNEL: stable
|
||||||
- TARGET: x86_64-pc-windows-msvc
|
|
||||||
CHANNEL: 1.28.0
|
|
||||||
- TARGET: i686-pc-windows-msvc
|
- TARGET: i686-pc-windows-msvc
|
||||||
CHANNEL: nightly
|
CHANNEL: nightly
|
||||||
- TARGET: i686-pc-windows-gnu
|
- TARGET: i686-pc-windows-gnu
|
||||||
|
|
Loading…
Reference in a new issue