Skip to content

Commit 888b918

Browse files
committed
v0.1.x: prepare to release tokio-executor 0.1.9
# 0.1.9 (November 7, 2019) ### Added - Add `executor::set_default` which behaves like `with_default` but returns a drop guard (#1725). Signed-off-by: Eliza Weisman <eliza@buoyant.io>
1 parent 22b7bd2 commit 888b918

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

tokio-executor/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.1.9 (November 7, 2019)
2+
3+
### Added
4+
- Add `executor::set_default` which behaves like `with_default` but returns a
5+
drop guard (#1725).
6+
17
# 0.1.8 (June 2, 2019)
28

39
### Added

tokio-executor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ name = "tokio-executor"
88
# - README.md
99
# - Update CHANGELOG.md.
1010
# - Create "v0.1.x" git tag.
11-
version = "0.1.8"
12-
documentation = "https://docs.rs/tokio-executor/0.1.7/tokio_executor"
11+
version = "0.1.9"
12+
documentation = "https://docs.rs/tokio-executor/0.1.9/tokio_executor"
1313
repository = "https://github.com/tokio-rs/tokio"
1414
homepage = "https://github.com/tokio-rs/tokio"
1515
license = "MIT"

tokio-executor/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Task execution related traits and utilities.
44

5-
[Documentation](https://docs.rs/tokio-executor/0.1.8/tokio_executor)
5+
[Documentation](https://docs.rs/tokio-executor/0.1.9/tokio_executor)
66

77
## Overview
88

@@ -31,10 +31,10 @@ executor, including:
3131

3232
* [`Park`] abstracts over blocking and unblocking the current thread.
3333

34-
[`Executor`]: https://docs.rs/tokio-executor/0.1.8/tokio_executor/trait.Executor.html
35-
[`enter`]: https://docs.rs/tokio-executor/0.1.8/tokio_executor/fn.enter.html
36-
[`DefaultExecutor`]: https://docs.rs/tokio-executor/0.1.8/tokio_executor/struct.DefaultExecutor.html
37-
[`Park`]: https://docs.rs/tokio-executor/0.1.8/tokio_executor/park/trait.Park.html
34+
[`Executor`]: https://docs.rs/tokio-executor/0.1.9/tokio_executor/trait.Executor.html
35+
[`enter`]: https://docs.rs/tokio-executor/0.1.9/tokio_executor/fn.enter.html
36+
[`DefaultExecutor`]: https://docs.rs/tokio-executor/0.1.9/tokio_executor/struct.DefaultExecutor.html
37+
[`Park`]: https://docs.rs/tokio-executor/0.1.9/tokio_executor/park/trait.Park.html
3838

3939
## License
4040

tokio-executor/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![deny(missing_docs, missing_debug_implementations)]
2-
#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.8")]
2+
#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.9")]
33

44
//! Task execution related traits and utilities.
55
//!

0 commit comments

Comments
 (0)