summaryrefslogtreecommitdiffstats
path: root/tokio-executor
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2018-03-30 15:28:44 -0700
committerGitHub <noreply@github.com>2018-03-30 15:28:44 -0700
commit2a01c26d5880b47da67ab4fd0698edc6867a23b6 (patch)
treedb9f2c0288f80cc8832dec5609e83bb2bda3c88d /tokio-executor
parentea172537aa3a67879fa19957a14879aa8f8f7639 (diff)
Bump version to v0.1.5 (#271)
This also bumps: * tokio-executor to v0.1.2 * tokio-threadpool to v0.1.2 * tokio-timer to v0.2.0
Diffstat (limited to 'tokio-executor')
-rw-r--r--tokio-executor/CHANGELOG.md2
-rw-r--r--tokio-executor/Cargo.toml2
-rw-r--r--tokio-executor/src/lib.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/tokio-executor/CHANGELOG.md b/tokio-executor/CHANGELOG.md
index 9a4b956b..f6e10669 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<Unpark>`.
diff --git a/tokio-executor/Cargo.toml b/tokio-executor/Cargo.toml
index 6088f6e9..cc783a0a 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 7a290cfa..220a66f1 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;