diff --git a/CHANGELOG.md b/CHANGELOG.md index ee526175a..c5503c5ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.3 (March 09, 2018) + +* Fix `CurrentThread::turn` to block on idle (#212). + # 0.1.2 (March 09, 2018) * Introduce Tokio Runtime (#141) diff --git a/Cargo.toml b/Cargo.toml index e41ede961..ca1979562 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ name = "tokio" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.2" +version = "0.1.3" authors = ["Carl Lerche "] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index 21e743f06..963e71c5b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -62,7 +62,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/tokio/0.1.2")] +#![doc(html_root_url = "https://docs.rs/tokio/0.1.3")] #![deny(missing_docs, warnings, missing_debug_implementations)] extern crate bytes;