Skip to content

Commit 11e2af6

Browse files
authored
Bump Tokio to v0.1.15. (#869)
Also bumps: - tokio-sync (0.1.0) - tokio-threadpool (0.1.11) - tokio-timer (0.2.9)
1 parent a4aae14 commit 11e2af6

File tree

15 files changed

+62
-17
lines changed

15 files changed

+62
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
This changelog only applies to the `tokio` crate proper. Each sub crate
22
maintains its own changelog tracking changes made in each respective sub crate.
33

4+
# 0.1.15 (January 24, 2019)
5+
6+
### Added
7+
- Re-export tokio-sync APIs (#839).
8+
- Stream enumerate combinator (#832).
9+
410
# 0.1.14 (January 6, 2019)
511

612
* Use feature flags to break up the crate, allowing users to pick & choose

Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
[package]
22
name = "tokio"
3-
43
# When releasing to crates.io:
54
# - Update html_root_url.
5+
# - Update doc url
6+
# - Cargo.toml
7+
# - README.md
68
# - Update CHANGELOG.md.
7-
# - Update doc URL.
89
# - Create "v0.1.x" git tag.
9-
version = "0.1.14"
10+
version = "0.1.15"
1011
authors = ["Carl Lerche <me@carllerche.com>"]
1112
license = "MIT"
1213
readme = "README.md"
13-
documentation = "https://docs.rs/tokio/0.1.14/tokio/"
14+
documentation = "https://docs.rs/tokio/0.1.15/tokio/"
1415
repository = "https://github.com/tokio-rs/tokio"
1516
homepage = "https://tokio.rs"
1617
description = """

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ the Rust programming language. It is:
3131

3232
[Website](https://tokio.rs) |
3333
[Guides](https://tokio.rs/docs/getting-started/hello-world/) |
34-
[API Docs](https://docs.rs/tokio/0.1.14/tokio) |
34+
[API Docs](https://docs.rs/tokio/0.1.15/tokio) |
3535
[Chat](https://gitter.im/tokio-rs/tokio)
3636

3737
The API docs for the master branch are published [here][master-dox].

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/tokio/0.1.14")]
1+
#![doc(html_root_url = "https://docs.rs/tokio/0.1.15")]
22
#![deny(missing_docs, warnings, missing_debug_implementations)]
33
#![cfg_attr(feature = "async-await-preview", feature(
44
async_await,

tokio-sync/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# 0.1.0 (January 24, 2019)
2+
3+
- Initial Release

tokio-sync/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[package]
22
name = "tokio-sync"
3-
43
# When releasing to crates.io:
54
# - Update html_root_url.
65
# - Update doc url
6+
# - Cargo.toml
7+
# - README.md
78
# - Update CHANGELOG.md.
89
# - Create "v0.1.x" git tag.
910
version = "0.1.0"

tokio-sync/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# tokio-sync
2+
3+
Synchronization utilities
4+
5+
[Documentation](https://docs.rs/tokio-sync/0.1.0/tokio_sync/)
6+
7+
## Overview
8+
9+
This crate provides synchronization utilities for usage with Tokio.
10+
11+
## License
12+
13+
This project is licensed under the [MIT license](LICENSE).
14+
15+
### Contribution
16+
17+
Unless you explicitly state otherwise, any contribution intentionally submitted
18+
for inclusion in Tokio by you, shall be licensed as MIT, without any additional
19+
terms or conditions.

tokio-threadpool/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.1.11 (January 24, 2019)
2+
3+
### Fixed
4+
- Drop incomplete tasks when threadpool is dropped (#722).
5+
16
# 0.1.10 (January 6, 2019)
27

38
* Fix deadlock bug in `blocking` (#795).

tokio-threadpool/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
name = "tokio-threadpool"
33
# When releasing to crates.io:
44
# - Update html_root_url.
5+
# - Update doc url
6+
# - Cargo.toml
7+
# - README.md
58
# - Update CHANGELOG.md.
6-
# - Update doc URL.
79
# - Create "v0.1.x" git tag.
8-
version = "0.1.10"
9-
documentation = "https://docs.rs/tokio-threadpool/0.1.10/tokio_threadpool"
10+
version = "0.1.11"
11+
documentation = "https://docs.rs/tokio-threadpool/0.1.11/tokio_threadpool"
1012
repository = "https://github.com/tokio-rs/tokio"
1113
homepage = "https://github.com/tokio-rs/tokio"
1214
license = "MIT"

tokio-threadpool/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A library for scheduling execution of futures concurrently across a pool of
44
threads.
55

6-
[Documentation](https://docs.rs/tokio-threadpool/0.1.10/tokio_threadpool)
6+
[Documentation](https://docs.rs/tokio-threadpool/0.1.11/tokio_threadpool)
77

88
### Why not Rayon?
99

tokio-threadpool/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.10")]
1+
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.11")]
22
#![deny(warnings, missing_docs, missing_debug_implementations)]
33

44
//! A work-stealing based thread pool for executing futures.

tokio-timer/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.2.9 (January 24, 2019)
2+
3+
### Fixed
4+
- `DelayQueue` timing logic when inserting / resetting a delay (#851, #863).
5+
- Documentation links (#842, #844, #845)
6+
17
# 0.2.8 (November 21, 2018)
28

39
* Implement throttle combinator (#736).

tokio-timer/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
name = "tokio-timer"
33
# When releasing to crates.io:
44
# - Update html_root_url.
5+
# - Update doc url
6+
# - Cargo.toml
7+
# - README.md
58
# - Update CHANGELOG.md.
6-
# - Update doc URL.
79
# - Create "v0.2.x" git tag.
8-
version = "0.2.8"
10+
version = "0.2.9"
911
authors = ["Carl Lerche <me@carllerche.com>"]
1012
license = "MIT"
1113
readme = "README.md"
12-
documentation = "https://docs.rs/tokio-timer/0.2.8/tokio_timer"
14+
documentation = "https://docs.rs/tokio-timer/0.2.9/tokio_timer"
1315
repository = "https://github.com/tokio-rs/tokio"
1416
homepage = "https://github.com/tokio-rs/tokio"
1517
description = """

tokio-timer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Timer facilities for Tokio
44

5-
[Documentation](https://tokio-rs.github.io/tokio/tokio_timer/)
5+
[Documentation](https://docs.rs/tokio-timer/0.2.9/tokio_timer/)
66

77
## Overview
88

tokio-timer/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.8")]
1+
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.9")]
22
#![deny(missing_docs, warnings, missing_debug_implementations)]
33

44
//! Utilities for tracking time.

0 commit comments

Comments
 (0)