chore: prepare v0.2.9 release (#2084)

This commit is contained in:
Carl Lerche 2020-01-09 14:20:46 -08:00 committed by GitHub
parent b34a849b79
commit c7c74a5a76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 4 deletions

View File

@ -1,4 +1,12 @@
# 0.2.8 (January 8, 2019)
# 0.2.9 (January 9, 2019)
### Fixes
- `AsyncSeek` impl for `File` (#1986).
- rt: shutdown deadlock in `threaded_scheduler` (#2074, #2082).
- rt: memory ordering when dropping `JoinHandle` (#2044).
- docs: misc API documentation fixes and improvements.
# 0.2.8 (January 7, 2019)
### Fixes
- depend on new version of `tokio-macros`.

View File

@ -8,12 +8,12 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
version = "0.2.8"
version = "0.2.9"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio/0.2.8/tokio/"
documentation = "https://docs.rs/tokio/0.2.9/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/0.2.8")]
#![doc(html_root_url = "https://docs.rs/tokio/0.2.9")]
#![allow(clippy::cognitive_complexity, clippy::needless_doctest_main)]
#![warn(
missing_debug_implementations,