From dba5c27296bbba014cfb1aef088593bbff373fa7 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Wed, 6 Jun 2018 20:14:35 -0700 Subject: [PATCH] Bump version to v0.1.7 (#396) This also bumps the versions of: * tokio-threadpool * tokio-timer --- CHANGELOG.md | 7 +++++++ Cargo.toml | 6 +++--- tokio-threadpool/CHANGELOG.md | 4 ++++ tokio-threadpool/Cargo.toml | 6 +++++- tokio-threadpool/src/lib.rs | 2 +- tokio-timer/CHANGELOG.md | 9 ++++++++- tokio-timer/Cargo.toml | 6 +++++- tokio-timer/src/lib.rs | 2 +- 8 files changed, 34 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 356185f09..227237fe5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.1.7 (June 6, 2018) + +* Add `Runtime::block_on` for concurrent runtime (#391). +* Provide handle to `current_thread::Runtime` that allows spawning tasks from + other threads (#340). +* Provide `clock::now()`, a configurable source of time (#381). + # 0.1.6 (May 2, 2018) * Add asynchronous filesystem APIs (#323). diff --git a/Cargo.toml b/Cargo.toml index 70a215f17..e66f0333d 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.6" +version = "0.1.7" authors = ["Carl Lerche "] license = "MIT" readme = "README.md" @@ -44,10 +44,10 @@ tokio-codec = { version = "0.1.0", path = "tokio-codec" } tokio-io = { version = "0.1.6", path = "tokio-io" } tokio-executor = { version = "0.1.2", path = "tokio-executor" } tokio-reactor = { version = "0.1.1", path = "tokio-reactor" } -tokio-threadpool = { version = "0.1.3", path = "tokio-threadpool" } +tokio-threadpool = { version = "0.1.4", path = "tokio-threadpool" } tokio-tcp = { version = "0.1.0", path = "tokio-tcp" } tokio-udp = { version = "0.1.0", path = "tokio-udp" } -tokio-timer = { version = "0.2.1", path = "tokio-timer" } +tokio-timer = { version = "0.2.4", path = "tokio-timer" } tokio-fs = { version = "0.1.0", path = "tokio-fs" } futures = "0.1.20" diff --git a/tokio-threadpool/CHANGELOG.md b/tokio-threadpool/CHANGELOG.md index 2a579609f..b496961f6 100644 --- a/tokio-threadpool/CHANGELOG.md +++ b/tokio-threadpool/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.4 (June 6, 2018) + +* Fix bug that can occur with multiple pools in a process (#375). + # 0.1.3 (May 2, 2018) * Add `blocking` annotation (#317). diff --git a/tokio-threadpool/Cargo.toml b/tokio-threadpool/Cargo.toml index 9d3164d43..c3e6bc306 100644 --- a/tokio-threadpool/Cargo.toml +++ b/tokio-threadpool/Cargo.toml @@ -1,6 +1,10 @@ [package] name = "tokio-threadpool" -version = "0.1.3" +# When releasing to crates.io: +# - Update html_root_url. +# - Update CHANGELOG.md. +# - Create "v0.1.x" git tag. +version = "0.1.4" 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 1fea677e9..e412f06f0 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.2")] +#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.4")] #![deny(warnings, missing_docs, missing_debug_implementations)] extern crate tokio_executor; diff --git a/tokio-timer/CHANGELOG.md b/tokio-timer/CHANGELOG.md index 63eda0241..9c7fc9242 100644 --- a/tokio-timer/CHANGELOG.md +++ b/tokio-timer/CHANGELOG.md @@ -1,7 +1,14 @@ -# 0.2.2 (May 2, 2018) +# 0.2.4 (June 6, 2018) + +* Add `sleep` function for easy interval delays (#347). +* Provide `clock::now()`, a configurable source of time (#381). + +# 0.2.3 (May 2, 2018) * Improve parking semantics (#327). +# 0.2.2 (Skipped due to failure in counting module) + # 0.2.1 (April 2, 2018) * Fix build on 32-bit systems (#274). diff --git a/tokio-timer/Cargo.toml b/tokio-timer/Cargo.toml index 6982cd984..1dee3498f 100644 --- a/tokio-timer/Cargo.toml +++ b/tokio-timer/Cargo.toml @@ -1,6 +1,10 @@ [package] name = "tokio-timer" -version = "0.2.3" +# When releasing to crates.io: +# - Update html_root_url. +# - Update CHANGELOG.md. +# - Create "v0.2.x" git tag. +version = "0.2.4" authors = ["Carl Lerche "] license = "MIT" readme = "README.md" diff --git a/tokio-timer/src/lib.rs b/tokio-timer/src/lib.rs index 1679ded25..d642c48d3 100644 --- a/tokio-timer/src/lib.rs +++ b/tokio-timer/src/lib.rs @@ -18,7 +18,7 @@ //! [`Interval`]: struct.Interval.html //! [`Timer`]: timer/struct.Timer.html -#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.0")] +#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.4")] #![deny(missing_docs, warnings, missing_debug_implementations)] extern crate tokio_executor;