diff --git a/CHANGELOG.md b/CHANGELOG.md index ab9875e98..5c0f8e982 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.5 (March 30, 2018) + +* Provide timer API (#266) + # 0.1.4 (March 22, 2018) * Fix build on FreeBSD (#218) diff --git a/tokio-executor/CHANGELOG.md b/tokio-executor/CHANGELOG.md index 9a4b956b2..f6e106693 100644 --- a/tokio-executor/CHANGELOG.md +++ b/tokio-executor/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.1.2 (unreleased) +# 0.1.2 (March 30, 2018) * Implement `Unpark` for `Box`. diff --git a/tokio-executor/Cargo.toml b/tokio-executor/Cargo.toml index 6088f6e98..cc783a0a6 100644 --- a/tokio-executor/Cargo.toml +++ b/tokio-executor/Cargo.toml @@ -5,7 +5,7 @@ name = "tokio-executor" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.1" +version = "0.1.2" documentation = "https://docs.rs/tokio-executor" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" diff --git a/tokio-executor/src/lib.rs b/tokio-executor/src/lib.rs index 7a290cfa1..220a66f1b 100644 --- a/tokio-executor/src/lib.rs +++ b/tokio-executor/src/lib.rs @@ -31,7 +31,7 @@ //! [`Park`]: park/index.html #![deny(missing_docs, missing_debug_implementations, warnings)] -#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.1")] +#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.2")] extern crate futures; diff --git a/tokio-threadpool/CHANGELOG.md b/tokio-threadpool/CHANGELOG.md index 06754def6..1b2173f19 100644 --- a/tokio-threadpool/CHANGELOG.md +++ b/tokio-threadpool/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.1.2 (unreleased) +# 0.1.2 (March 30, 2018) * Add the ability to specify a custom thread parker. diff --git a/tokio-threadpool/Cargo.toml b/tokio-threadpool/Cargo.toml index c05b35570..28e66173a 100644 --- a/tokio-threadpool/Cargo.toml +++ b/tokio-threadpool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-threadpool" -version = "0.1.1" +version = "0.1.2" documentation = "https://docs.rs/tokio-threadpool" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" diff --git a/tokio-threadpool/src/lib.rs b/tokio-threadpool/src/lib.rs index 8f69d52c6..1059aac6e 100644 --- a/tokio-threadpool/src/lib.rs +++ b/tokio-threadpool/src/lib.rs @@ -1,6 +1,6 @@ //! A work-stealing based thread pool for executing futures. -#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.1")] +#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.2")] #![deny(warnings, missing_docs, missing_debug_implementations)] extern crate tokio_executor; diff --git a/tokio-timer/CHANGELOG.md b/tokio-timer/CHANGELOG.md index 6490e85e4..38518733b 100644 --- a/tokio-timer/CHANGELOG.md +++ b/tokio-timer/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.2.0 (unreleased) +# 0.2.0 (March 30, 2018) * Rewrite from scratch using a hierarchical wheel strategy (#249).