mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-28 00:00:11 +02:00
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:
@@ -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)
|
# 0.1.3 (March 09, 2018)
|
||||||
|
|
||||||
* Fix `CurrentThread::turn` to block on idle (#212).
|
* Fix `CurrentThread::turn` to block on idle (#212).
|
||||||
|
|||||||
+8
-6
@@ -5,7 +5,7 @@ name = "tokio"
|
|||||||
# - Update html_root_url.
|
# - Update html_root_url.
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
authors = ["Carl Lerche <[email protected]>"]
|
authors = ["Carl Lerche <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
@@ -38,14 +38,16 @@ appveyor = { repository = "carllerche/tokio" }
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio-io = { version = "0.1.6", path = "tokio-io" }
|
tokio-io = { version = "0.1.6", path = "tokio-io" }
|
||||||
tokio-executor = { version = "0.1.0", path = "tokio-executor" }
|
tokio-executor = { version = "0.1.1", path = "tokio-executor" }
|
||||||
tokio-reactor = { version = "0.1.0", path = "tokio-reactor" }
|
tokio-reactor = { version = "0.1.1", path = "tokio-reactor" }
|
||||||
tokio-threadpool = { version = "0.1.0", path = "tokio-threadpool" }
|
tokio-threadpool = { version = "0.1.1", path = "tokio-threadpool" }
|
||||||
tokio-tcp = { version = "0.1.0", path = "tokio-tcp" }
|
tokio-tcp = { version = "0.1.0", path = "tokio-tcp" }
|
||||||
tokio-udp = { version = "0.1.0", path = "tokio-udp" }
|
tokio-udp = { version = "0.1.0", path = "tokio-udp" }
|
||||||
mio = "0.6.14"
|
mio = "0.6.14"
|
||||||
futures = "0.1.18"
|
futures = "0.1.19"
|
||||||
futures2 = { version = "0.1", path = "futures2", optional = true }
|
|
||||||
|
# Futures 0.2 integration
|
||||||
|
futures2 = { version = "0.1.0", path = "futures2", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bytes = "0.4"
|
bytes = "0.4"
|
||||||
|
|||||||
+1
-1
@@ -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)]
|
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
# 0.1.1 (March 22, 2018)
|
||||||
|
|
||||||
|
* Optionally support futures 0.2.
|
||||||
|
|
||||||
# 0.1.0 (March 09, 2018)
|
# 0.1.0 (March 09, 2018)
|
||||||
|
|
||||||
* Initial release
|
* Initial release
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tokio-executor"
|
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"
|
documentation = "https://docs.rs/tokio-executor"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://github.com/tokio-rs/tokio"
|
homepage = "https://github.com/tokio-rs/tokio"
|
||||||
@@ -13,8 +18,10 @@ keywords = ["futures", "tokio"]
|
|||||||
categories = ["concurrency", "asynchronous"]
|
categories = ["concurrency", "asynchronous"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.1.18"
|
futures = "0.1.19"
|
||||||
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
|
||||||
|
# Futures 0.2 integration
|
||||||
|
futures2 = { version = "0.1.0", path = "../futures2", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
unstable-futures = ["futures2"]
|
unstable-futures = ["futures2"]
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
//! [`Park`]: park/index.html
|
//! [`Park`]: park/index.html
|
||||||
|
|
||||||
#![deny(missing_docs, missing_debug_implementations, warnings)]
|
#![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;
|
extern crate futures;
|
||||||
|
|
||||||
|
|||||||
@@ -20,8 +20,3 @@ categories = ["asynchronous"]
|
|||||||
bytes = "0.4"
|
bytes = "0.4"
|
||||||
futures = "0.1.18"
|
futures = "0.1.18"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
|
||||||
|
|
||||||
[features]
|
|
||||||
unstable-futures = ["futures2"]
|
|
||||||
default = []
|
|
||||||
|
|||||||
@@ -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)
|
# 0.1.0 (March 09, 2018)
|
||||||
|
|
||||||
* Initial release
|
* Initial release
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ name = "tokio-reactor"
|
|||||||
# - Update html_root_url.
|
# - Update html_root_url.
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
authors = ["Carl Lerche <[email protected]>"]
|
authors = ["Carl Lerche <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
@@ -18,12 +18,14 @@ Event loop that drives Tokio I/O resources.
|
|||||||
categories = ["asynchronous", "network-programming"]
|
categories = ["asynchronous", "network-programming"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.1.18"
|
futures = "0.1.19"
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
mio = "0.6.14"
|
mio = "0.6.14"
|
||||||
slab = "0.4.0"
|
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" }
|
tokio-io = { version = "0.1.6", path = "../tokio-io" }
|
||||||
|
|
||||||
|
# Futures 0.2 integration
|
||||||
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
//! [`PollEvented`]: struct.PollEvented.html
|
//! [`PollEvented`]: struct.PollEvented.html
|
||||||
//! [reactor module]: https://docs.rs/tokio/0.1/tokio/reactor/index.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)]
|
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
|
|||||||
@@ -18,11 +18,13 @@ categories = ["asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio-io = { version = "0.1.6", path = "../tokio-io" }
|
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"
|
bytes = "0.4"
|
||||||
mio = "0.6.14"
|
mio = "0.6.14"
|
||||||
iovec = "0.1"
|
iovec = "0.1"
|
||||||
futures = "0.1.18"
|
futures = "0.1.19"
|
||||||
|
|
||||||
|
# Futures 0.2 integration
|
||||||
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|||||||
@@ -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)
|
# 0.1.0 (March 09, 2018)
|
||||||
|
|
||||||
* Initial release
|
* Initial release
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tokio-threadpool"
|
name = "tokio-threadpool"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
documentation = "https://docs.rs/tokio-threadpool"
|
documentation = "https://docs.rs/tokio-threadpool"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://github.com/tokio-rs/tokio"
|
homepage = "https://github.com/tokio-rs/tokio"
|
||||||
@@ -13,12 +13,14 @@ keywords = ["futures", "tokio"]
|
|||||||
categories = ["concurrency", "asynchronous"]
|
categories = ["concurrency", "asynchronous"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio-executor = { version = "0.1.0", path = "../tokio-executor" }
|
tokio-executor = { version = "0.1.1", path = "../tokio-executor" }
|
||||||
futures = "0.1.18"
|
futures = "0.1.19"
|
||||||
crossbeam-deque = "0.3"
|
crossbeam-deque = "0.3"
|
||||||
num_cpus = "1.2"
|
num_cpus = "1.2"
|
||||||
rand = "0.4"
|
rand = "0.4"
|
||||||
log = "0.3"
|
log = "0.3"
|
||||||
|
|
||||||
|
# Futures 0.2 integration
|
||||||
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
//! A work-stealing based thread pool for executing futures.
|
//! 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)]
|
#![deny(warnings, missing_docs, missing_debug_implementations)]
|
||||||
|
|
||||||
extern crate tokio_executor;
|
extern crate tokio_executor;
|
||||||
|
|||||||
@@ -18,11 +18,13 @@ categories = ["asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio-io = { version = "0.1.6", path = "../tokio-io" }
|
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"
|
bytes = "0.4"
|
||||||
mio = "0.6.14"
|
mio = "0.6.14"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
futures = "0.1.18"
|
futures = "0.1.19"
|
||||||
|
|
||||||
|
# Futures 0.2 integration
|
||||||
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|||||||
Reference in New Issue
Block a user