Release 0.23.0

This commit is contained in:
Kirill Chibisov 2020-10-02 18:05:07 +03:00 committed by GitHub
parent fc336a76bf
commit d18afb4a50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,7 @@
# Unreleased # Unreleased
# 0.23.0 (2020-10-02)
- On iOS, fixed support for the "Debug View Heirarchy" feature in Xcode. - On iOS, fixed support for the "Debug View Heirarchy" feature in Xcode.
- On all platforms, `available_monitors` and `primary_monitor` are now on `EventLoopWindowTarget` rather than `EventLoop` to list monitors event in the event loop. - On all platforms, `available_monitors` and `primary_monitor` are now on `EventLoopWindowTarget` rather than `EventLoop` to list monitors event in the event loop.
- On Unix, X11 and Wayland are now optional features (enabled by default) - On Unix, X11 and Wayland are now optional features (enabled by default)

View file

@ -1,6 +1,6 @@
[package] [package]
name = "winit" name = "winit"
version = "0.22.2" version = "0.23.0"
authors = ["The winit contributors", "Pierre Krieger <pierre.krieger1708@gmail.com>"] authors = ["The winit contributors", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
description = "Cross-platform window creation library." description = "Cross-platform window creation library."
edition = "2018" edition = "2018"

View file

@ -6,7 +6,7 @@
```toml ```toml
[dependencies] [dependencies]
winit = "0.22.2" winit = "0.23.0"
``` ```
## [Documentation](https://docs.rs/winit) ## [Documentation](https://docs.rs/winit)