diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 00498b7a8..2a76cc495 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -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`. diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 0efccab24..9fa7f2394 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -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 "] 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 = """ diff --git a/tokio/src/lib.rs b/tokio/src/lib.rs index 7355ab708..1b1521348 100644 --- a/tokio/src/lib.rs +++ b/tokio/src/lib.rs @@ -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,