chore: release tokio v1.0.2 (#3429)

This commit is contained in:
Carl Lerche 2021-01-14 16:37:40 -08:00
parent 0a7117fd9a
commit 3dc5f6c0ab
No known key found for this signature in database
GPG Key ID: AA14CE6F061D8F7A
3 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
# 1.0.2 (January 14, 2020)
### Fixed
- io: soundness in `read_to_end` (#3428).
# 1.0.1 (December 25, 2020)
This release fixes a soundness hole caused by the combination of `RwLockWriteGuard::map`

View File

@ -8,12 +8,12 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v1.0.x" git tag.
version = "1.0.1"
version = "1.0.2"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio/1.0.1/tokio/"
documentation = "https://docs.rs/tokio/1.0.2/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """

View File

@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio/1.0.1")]
#![doc(html_root_url = "https://docs.rs/tokio/1.0.2")]
#![allow(
clippy::cognitive_complexity,
clippy::large_enum_variant,