Release Alpha 2 (#996)

This commit is contained in:
Osspial 2019-07-09 18:25:32 -04:00 committed by GitHub
parent 3ee59696e5
commit ce5cf97e17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View file

@ -1,5 +1,7 @@
# Unreleased
# 0.20.0 Alpha 2 (2019-06-28)
- On X11, non-resizable windows now have maximize explicitly disabled.
- On Windows, support paths longer than MAX_PATH (260 characters) in `WindowEvent::DroppedFile`
and `WindowEvent::HoveredFile`.
@ -17,7 +19,7 @@ and `WindowEvent::HoveredFile`.
- On Windows, fix `with_maximized` not properly setting window size to entire window.
- On macOS, change `WindowExtMacOS::request_user_attention()` to take an `enum` instead of a `bool`.
# 0.20.0 Alpha 1
# 0.20.0 Alpha 1 (2019-06-21)
- Changes below are considered **breaking**.
- Change all occurrences of `EventsLoop` to `EventLoop`.

View file

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

View file

@ -7,7 +7,7 @@
```toml
[dependencies]
winit = "0.20.0-alpha1"
winit = "0.20.0-alpha2"
```
## [Documentation](https://docs.rs/winit)