Bump version to v0.1.6 (#336)

This commit is contained in:
Carl Lerche
2018-05-02 12:14:44 -07:00
committed by GitHub
parent f768163982
commit 14b31bdba5
8 changed files with 27 additions and 6 deletions
+7
View File
@@ -1,3 +1,10 @@
# 0.1.6 (May 2, 2018)
* Add asynchronous filesystem APIs (#323).
* Add "current thread" runtime variant (#308).
* `CurrentThread`: Expose inner `Park` instance.
* Improve fairness of `CurrentThread` executor (#313).
# 0.1.5 (March 30, 2018)
* Provide timer API (#266)
+1 -1
View File
@@ -5,7 +5,7 @@ name = "tokio"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.5"
version = "0.1.6"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
+8 -2
View File
@@ -109,23 +109,29 @@ The crates included as part of Tokio are:
* [`tokio-executor`]: Task execution related traits and utilities.
* [`tokio-fs`]: Filesystem (and standard in / out) APIs.
* [`tokio-io`]: Asynchronous I/O related traits and utilities.
* [`tokio-reactor`]: Event loop that drives I/O resources (like TCP and UDP
sockets).
* [`tokio-tcp`]: TCP bindings for use with `tokio-io` and `tokio-reactor`.
* [`tokio-threadpool`]: Schedules the execution of futures across a pool of
threads.
* [`tokio-tcp`]: TCP bindings for use with `tokio-io` and `tokio-reactor`.
* [ `tokio-timer`]: Time related APIs.
* [`tokio-udp`]: UDP bindings for use with `tokio-io` and `tokio-reactor`.
[`tokio-executor`]: tokio-executor
[`tokio-fs`]: tokio-fs
[`tokio-io`]: tokio-io
[`tokio-reactor`]: tokio-reactor
[`tokio-threadpool`]: tokio-threadpool
[`tokio-tcp`]: tokio-tcp
[`tokio-threadpool`]: tokio-threadpool
[`tokio-timer`]: tokio-timer
[`tokio-udp`]: tokio-udp
## License
+1 -1
View File
@@ -1,3 +1,3 @@
# 0.1.0 (unreleased)
# 0.1.0 (May 2, 2018)
* Initial release
+4
View File
@@ -1,3 +1,7 @@
# 0.1.3 (May 2, 2018)
* Add `blocking` annotation (#317).
# 0.1.2 (March 30, 2018)
* Add the ability to specify a custom thread parker.
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "tokio-threadpool"
version = "0.1.2"
version = "0.1.3"
documentation = "https://docs.rs/tokio-threadpool"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
+4
View File
@@ -1,3 +1,7 @@
# 0.2.2 (May 2, 2018)
* Improve parking semantics (#327).
# 0.2.1 (April 2, 2018)
* Fix build on 32-bit systems (#274).
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "tokio-timer"
version = "0.2.1"
version = "0.2.3"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"