Bump version to v0.1.4 (#252)

This also bumps:

* tokio-executor: v0.1.1
* tokio-reactor: v0.1.1
* tokio-threadpool: v0.1.1
This commit is contained in:
Carl Lerche
2018-03-23 10:34:42 -07:00
committed by GitHub
parent 23d95b44e7
commit 9cffda59c9
15 changed files with 64 additions and 28 deletions
+9
View File
@@ -1,3 +1,12 @@
# 0.1.4 (March 22, 2018)
* Fix build on FreeBSD (#218)
* Shutdown the Runtime when the handle is dropped (#214)
* Set Runtime thread name prefix for worker threads (#232)
* Add builder for Runtime (#234)
* Extract TCP and UDP types into separate crates (#224)
* Optionally support futures 0.2.
# 0.1.3 (March 09, 2018)
* Fix `CurrentThread::turn` to block on idle (#212).
+8 -6
View File
@@ -5,7 +5,7 @@ name = "tokio"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.3"
version = "0.1.4"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
@@ -38,14 +38,16 @@ appveyor = { repository = "carllerche/tokio" }
[dependencies]
tokio-io = { version = "0.1.6", path = "tokio-io" }
tokio-executor = { version = "0.1.0", path = "tokio-executor" }
tokio-reactor = { version = "0.1.0", path = "tokio-reactor" }
tokio-threadpool = { version = "0.1.0", path = "tokio-threadpool" }
tokio-executor = { version = "0.1.1", path = "tokio-executor" }
tokio-reactor = { version = "0.1.1", path = "tokio-reactor" }
tokio-threadpool = { version = "0.1.1", path = "tokio-threadpool" }
tokio-tcp = { version = "0.1.0", path = "tokio-tcp" }
tokio-udp = { version = "0.1.0", path = "tokio-udp" }
mio = "0.6.14"
futures = "0.1.18"
futures2 = { version = "0.1", path = "futures2", optional = true }
futures = "0.1.19"
# Futures 0.2 integration
futures2 = { version = "0.1.0", path = "futures2", optional = true }
[dev-dependencies]
bytes = "0.4"
+1 -1
View File
@@ -62,7 +62,7 @@
//! }
//! ```
#![doc(html_root_url = "https://docs.rs/tokio/0.1.3")]
#![doc(html_root_url = "https://docs.rs/tokio/0.1.4")]
#![deny(missing_docs, warnings, missing_debug_implementations)]
#[macro_use]
+4
View File
@@ -1,3 +1,7 @@
# 0.1.1 (March 22, 2018)
* Optionally support futures 0.2.
# 0.1.0 (March 09, 2018)
* Initial release
+10 -3
View File
@@ -1,6 +1,11 @@
[package]
name = "tokio-executor"
version = "0.1.0"
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.1"
documentation = "https://docs.rs/tokio-executor"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
@@ -13,8 +18,10 @@ keywords = ["futures", "tokio"]
categories = ["concurrency", "asynchronous"]
[dependencies]
futures = "0.1.18"
futures2 = { version = "0.1", path = "../futures2", optional = true }
futures = "0.1.19"
# Futures 0.2 integration
futures2 = { version = "0.1.0", path = "../futures2", optional = true }
[features]
unstable-futures = ["futures2"]
+1 -1
View File
@@ -31,7 +31,7 @@
//! [`Park`]: park/index.html
#![deny(missing_docs, missing_debug_implementations, warnings)]
#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.0")]
#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.1")]
extern crate futures;
-5
View File
@@ -20,8 +20,3 @@ categories = ["asynchronous"]
bytes = "0.4"
futures = "0.1.18"
log = "0.4"
futures2 = { version = "0.1", path = "../futures2", optional = true }
[features]
unstable-futures = ["futures2"]
default = []
+6
View File
@@ -1,3 +1,9 @@
# 0.1.1 (March 22, 2018)
* Fix threading bugs (#227)
* Fix notification bugs (#243)
* Optionally support futures 0.2 (#172)
# 0.1.0 (March 09, 2018)
* Initial release
+5 -3
View File
@@ -5,7 +5,7 @@ name = "tokio-reactor"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.0"
version = "0.1.1"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
@@ -18,12 +18,14 @@ Event loop that drives Tokio I/O resources.
categories = ["asynchronous", "network-programming"]
[dependencies]
futures = "0.1.18"
futures = "0.1.19"
log = "0.4.1"
mio = "0.6.14"
slab = "0.4.0"
tokio-executor = { version = "0.1.0", path = "../tokio-executor" }
tokio-executor = { version = "0.1.1", path = "../tokio-executor" }
tokio-io = { version = "0.1.6", path = "../tokio-io" }
# Futures 0.2 integration
futures2 = { version = "0.1", path = "../futures2", optional = true }
[features]
+1 -1
View File
@@ -27,7 +27,7 @@
//! [`PollEvented`]: struct.PollEvented.html
//! [reactor module]: https://docs.rs/tokio/0.1/tokio/reactor/index.html
#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.0")]
#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.1")]
#![deny(missing_docs, warnings, missing_debug_implementations)]
#[macro_use]
+4 -2
View File
@@ -18,11 +18,13 @@ categories = ["asynchronous"]
[dependencies]
tokio-io = { version = "0.1.6", path = "../tokio-io" }
tokio-reactor = { version = "0.1.0", path = "../tokio-reactor" }
tokio-reactor = { version = "0.1.1", path = "../tokio-reactor" }
bytes = "0.4"
mio = "0.6.14"
iovec = "0.1"
futures = "0.1.18"
futures = "0.1.19"
# Futures 0.2 integration
futures2 = { version = "0.1", path = "../futures2", optional = true }
[dev-dependencies]
+5
View File
@@ -1,3 +1,8 @@
# 0.1.1 (March 22, 2018)
* Handle futures that panic on the threadpool.
* Optionally support futures 0.2.
# 0.1.0 (March 09, 2018)
* Initial release
+5 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "tokio-threadpool"
version = "0.1.0"
version = "0.1.1"
documentation = "https://docs.rs/tokio-threadpool"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
@@ -13,12 +13,14 @@ keywords = ["futures", "tokio"]
categories = ["concurrency", "asynchronous"]
[dependencies]
tokio-executor = { version = "0.1.0", path = "../tokio-executor" }
futures = "0.1.18"
tokio-executor = { version = "0.1.1", path = "../tokio-executor" }
futures = "0.1.19"
crossbeam-deque = "0.3"
num_cpus = "1.2"
rand = "0.4"
log = "0.3"
# Futures 0.2 integration
futures2 = { version = "0.1", path = "../futures2", optional = true }
[dev-dependencies]
+1 -1
View File
@@ -1,6 +1,6 @@
//! A work-stealing based thread pool for executing futures.
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.0")]
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.1")]
#![deny(warnings, missing_docs, missing_debug_implementations)]
extern crate tokio_executor;
+4 -2
View File
@@ -18,11 +18,13 @@ categories = ["asynchronous"]
[dependencies]
tokio-io = { version = "0.1.6", path = "../tokio-io" }
tokio-reactor = { version = "0.1.0", path = "../tokio-reactor" }
tokio-reactor = { version = "0.1.1", path = "../tokio-reactor" }
bytes = "0.4"
mio = "0.6.14"
log = "0.4"
futures = "0.1.18"
futures = "0.1.19"
# Futures 0.2 integration
futures2 = { version = "0.1", path = "../futures2", optional = true }
[dev-dependencies]