summaryrefslogtreecommitdiffstats
path: root/tokio-executor
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2018-08-06 20:36:50 -0700
committerGitHub <noreply@github.com>2018-08-06 20:36:50 -0700
commite964c4136c91c535fb2dfee0a3327dc5a6599903 (patch)
treea4ef51d63ad36cad9635a5be3303561b18536888 /tokio-executor
parent0490280d662f000aff674593cc9a4f69a1cd1171 (diff)
Bump subcrate versions (#524)
* tokio-current-thread 0.1.1 * tokio-executor 0.1.3 * tokio-fs 0.1.3 * tokio-reactor 0.1.3 * tokio-tcp 0.1.1 * tokio-timer 0.2.5
Diffstat (limited to 'tokio-executor')
-rw-r--r--tokio-executor/CHANGELOG.md8
-rw-r--r--tokio-executor/Cargo.toml2
-rw-r--r--tokio-executor/src/lib.rs2
3 files changed, 10 insertions, 2 deletions
diff --git a/tokio-executor/CHANGELOG.md b/tokio-executor/CHANGELOG.md
index f6e10669..3fb039a7 100644
--- a/tokio-executor/CHANGELOG.md
+++ b/tokio-executor/CHANGELOG.md
@@ -1,3 +1,11 @@
+# 0.1.3 (August 6, 2018)
+
+* Implement `Executor` for `Box<E: Executor>` (#420).
+* Improve `EnterError` debug message (#410).
+* Implement `status`, `Send`, and `Sync` for `DefaultExecutor` (#463, #472).
+* Fix race in `ParkThread` (#507).
+* Handle recursive calls into `DefaultExecutor` (#473).
+
# 0.1.2 (March 30, 2018)
* Implement `Unpark` for `Box<Unpark>`.
diff --git a/tokio-executor/Cargo.toml b/tokio-executor/Cargo.toml
index e73ff5cb..3e346894 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.2"
+version = "0.1.3"
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 4fbfdc79..e4a88690 100644
--- a/tokio-executor/src/lib.rs
+++ b/tokio-executor/src/lib.rs
@@ -33,7 +33,7 @@
//! [`Future::poll`]: https://docs.rs/futures/0.1/futures/future/trait.Future.html#tymethod.poll
#![deny(missing_docs, missing_debug_implementations, warnings)]
-#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.2")]
+#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.3")]
extern crate futures;