File tree Expand file tree Collapse file tree 15 files changed +62
-17
lines changed Expand file tree Collapse file tree 15 files changed +62
-17
lines changed Original file line number Diff line number Diff line change 1
1
This changelog only applies to the ` tokio ` crate proper. Each sub crate
2
2
maintains its own changelog tracking changes made in each respective sub crate.
3
3
4
+ # 0.1.15 (January 24, 2019)
5
+
6
+ ### Added
7
+ - Re-export tokio-sync APIs (#839 ).
8
+ - Stream enumerate combinator (#832 ).
9
+
4
10
# 0.1.14 (January 6, 2019)
5
11
6
12
* Use feature flags to break up the crate, allowing users to pick & choose
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tokio"
3
-
4
3
# When releasing to crates.io:
5
4
# - Update html_root_url.
5
+ # - Update doc url
6
+ # - Cargo.toml
7
+ # - README.md
6
8
# - Update CHANGELOG.md.
7
- # - Update doc URL.
8
9
# - Create "v0.1.x" git tag.
9
- version = " 0.1.14 "
10
+ version = " 0.1.15 "
10
11
authors = [" Carl Lerche <me@carllerche.com>" ]
11
12
license = " MIT"
12
13
readme = " README.md"
13
- documentation = " https://docs.rs/tokio/0.1.14 /tokio/"
14
+ documentation = " https://docs.rs/tokio/0.1.15 /tokio/"
14
15
repository = " https://github.com/tokio-rs/tokio"
15
16
homepage = " https://tokio.rs"
16
17
description = """
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ the Rust programming language. It is:
31
31
32
32
[ Website] ( https://tokio.rs ) |
33
33
[ 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 ) |
35
35
[ Chat] ( https://gitter.im/tokio-rs/tokio )
36
36
37
37
The API docs for the master branch are published [ here] [ master-dox ] .
Original file line number Diff line number Diff line change 1
- #![ doc( html_root_url = "https://docs.rs/tokio/0.1.14 " ) ]
1
+ #![ doc( html_root_url = "https://docs.rs/tokio/0.1.15 " ) ]
2
2
#![ deny( missing_docs, warnings, missing_debug_implementations) ]
3
3
#![ cfg_attr( feature = "async-await-preview" , feature(
4
4
async_await,
Original file line number Diff line number Diff line change
1
+ # 0.1.0 (January 24, 2019)
2
+
3
+ - Initial Release
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tokio-sync"
3
-
4
3
# When releasing to crates.io:
5
4
# - Update html_root_url.
6
5
# - Update doc url
6
+ # - Cargo.toml
7
+ # - README.md
7
8
# - Update CHANGELOG.md.
8
9
# - Create "v0.1.x" git tag.
9
10
version = " 0.1.0"
Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change
1
+ # 0.1.11 (January 24, 2019)
2
+
3
+ ### Fixed
4
+ - Drop incomplete tasks when threadpool is dropped (#722 ).
5
+
1
6
# 0.1.10 (January 6, 2019)
2
7
3
8
* Fix deadlock bug in ` blocking ` (#795 ).
Original file line number Diff line number Diff line change 2
2
name = " tokio-threadpool"
3
3
# When releasing to crates.io:
4
4
# - Update html_root_url.
5
+ # - Update doc url
6
+ # - Cargo.toml
7
+ # - README.md
5
8
# - Update CHANGELOG.md.
6
- # - Update doc URL.
7
9
# - 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"
10
12
repository = " https://github.com/tokio-rs/tokio"
11
13
homepage = " https://github.com/tokio-rs/tokio"
12
14
license = " MIT"
Original file line number Diff line number Diff line change 3
3
A library for scheduling execution of futures concurrently across a pool of
4
4
threads.
5
5
6
- [ Documentation] ( https://docs.rs/tokio-threadpool/0.1.10 /tokio_threadpool )
6
+ [ Documentation] ( https://docs.rs/tokio-threadpool/0.1.11 /tokio_threadpool )
7
7
8
8
### Why not Rayon?
9
9
Original file line number Diff line number Diff line change 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 " ) ]
2
2
#![ deny( warnings, missing_docs, missing_debug_implementations) ]
3
3
4
4
//! A work-stealing based thread pool for executing futures.
Original file line number Diff line number Diff line change
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
+
1
7
# 0.2.8 (November 21, 2018)
2
8
3
9
* Implement throttle combinator (#736 ).
Original file line number Diff line number Diff line change 2
2
name = " tokio-timer"
3
3
# When releasing to crates.io:
4
4
# - Update html_root_url.
5
+ # - Update doc url
6
+ # - Cargo.toml
7
+ # - README.md
5
8
# - Update CHANGELOG.md.
6
- # - Update doc URL.
7
9
# - Create "v0.2.x" git tag.
8
- version = " 0.2.8 "
10
+ version = " 0.2.9 "
9
11
authors = [" Carl Lerche <me@carllerche.com>" ]
10
12
license = " MIT"
11
13
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"
13
15
repository = " https://github.com/tokio-rs/tokio"
14
16
homepage = " https://github.com/tokio-rs/tokio"
15
17
description = """
Original file line number Diff line number Diff line change 2
2
3
3
Timer facilities for Tokio
4
4
5
- [ Documentation] ( https://tokio-rs.github.io/tokio /tokio_timer/ )
5
+ [ Documentation] ( https://docs.rs/ tokio-timer/0.2.9 /tokio_timer/ )
6
6
7
7
## Overview
8
8
Original file line number Diff line number Diff line change 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 " ) ]
2
2
#![ deny( missing_docs, warnings, missing_debug_implementations) ]
3
3
4
4
//! Utilities for tracking time.
You can’t perform that action at this time.
0 commit comments