Bump version to 0.22.1 (#1537)

There are a few relatively important bugfixes with no API impact in the
master branch. We might as well release this as a non-breaking change.
This commit is contained in:
Ryan G 2020-04-17 13:36:42 -04:00 committed by GitHub
parent 1f24a09570
commit d5609729cc
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.22.1 (2020-04-16)
- On X11, fix `ResumeTimeReached` being fired too early. - On X11, fix `ResumeTimeReached` being fired too early.
- On Web, replaced zero timeout for `ControlFlow::Poll` with `requestAnimationFrame` - On Web, replaced zero timeout for `ControlFlow::Poll` with `requestAnimationFrame`
- On Web, fix a possible panic during event handling - On Web, fix a possible panic during event handling

View file

@ -1,6 +1,6 @@
[package] [package]
name = "winit" name = "winit"
version = "0.22.0" version = "0.22.1"
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.0" winit = "0.22.1"
``` ```
## [Documentation](https://docs.rs/winit) ## [Documentation](https://docs.rs/winit)