summaryrefslogtreecommitdiffstats
path: root/tokio-threadpool
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2018-06-06 20:14:35 -0700
committerGitHub <noreply@github.com>2018-06-06 20:14:35 -0700
commitdba5c27296bbba014cfb1aef088593bbff373fa7 (patch)
tree025a4faca3d60b5ab3070f7a9d019b1938c85b7f /tokio-threadpool
parentdb620b42ec8330ed33996edd7ce00d61ad947a4b (diff)
Bump version to v0.1.7 (#396)
This also bumps the versions of: * tokio-threadpool * tokio-timer
Diffstat (limited to 'tokio-threadpool')
-rw-r--r--tokio-threadpool/CHANGELOG.md4
-rw-r--r--tokio-threadpool/Cargo.toml6
-rw-r--r--tokio-threadpool/src/lib.rs2
3 files changed, 10 insertions, 2 deletions
diff --git a/tokio-threadpool/CHANGELOG.md b/tokio-threadpool/CHANGELOG.md
index 2a579609..b496961f 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 9d3164d4..c3e6bc30 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 1fea677e..e412f06f 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;