mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-07 00:00:08 +02:00
Release 0.2.0 alpha.5 (#1576)
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
# 0.2.0-alpha.5 (September 19, 2019)
|
||||||
|
|
||||||
|
- Track tokio release
|
||||||
|
|
||||||
# 0.2.0-alpha.4 (August 29, 2019)
|
# 0.2.0-alpha.4 (August 29, 2019)
|
||||||
|
|
||||||
- Track tokio release.
|
- Track tokio release.
|
||||||
|
|||||||
@@ -7,20 +7,20 @@ name = "tokio-codec"
|
|||||||
# - Cargo.toml
|
# - Cargo.toml
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.2.x" git tag.
|
# - Create "v0.2.x" git tag.
|
||||||
version = "0.2.0-alpha.4"
|
version = "0.2.0-alpha.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-codec/0.2.0-alpha.4/tokio_codec"
|
documentation = "https://docs.rs/tokio-codec/0.2.0-alpha.5/tokio_codec"
|
||||||
description = """
|
description = """
|
||||||
Utilities for encoding and decoding frames.
|
Utilities for encoding and decoding frames.
|
||||||
"""
|
"""
|
||||||
categories = ["asynchronous"]
|
categories = ["asynchronous"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio-io = { version = "=0.2.0-alpha.4", path = "../tokio-io" }
|
tokio-io = { version = "=0.2.0-alpha.5", path = "../tokio-io" }
|
||||||
|
|
||||||
bytes = "0.4.7"
|
bytes = "0.4.7"
|
||||||
futures-core-preview = "=0.3.0-alpha.18"
|
futures-core-preview = "=0.3.0-alpha.18"
|
||||||
@@ -28,8 +28,8 @@ futures-sink-preview = "=0.3.0-alpha.18"
|
|||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "=0.2.0-alpha.4", path = "../tokio" }
|
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" }
|
||||||
tokio-test = { version = "=0.2.0-alpha.4", path = "../tokio-test" }
|
tokio-test = { version = "=0.2.0-alpha.5", path = "../tokio-test" }
|
||||||
|
|
||||||
futures-util-preview = "=0.3.0-alpha.18"
|
futures-util-preview = "=0.3.0-alpha.18"
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-codec/0.2.0-alpha.4")]
|
#![doc(html_root_url = "https://docs.rs/tokio-codec/0.2.0-alpha.5")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
# 0.2.0-alpha.5 (September 19, 2019)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
- shutdown blocking pool threads when idle (#1562, #1514).
|
||||||
|
|
||||||
# 0.2.0-alpha.4 (August 29, 2019)
|
# 0.2.0-alpha.4 (August 29, 2019)
|
||||||
|
|
||||||
- Track tokio release.
|
- Track tokio release.
|
||||||
|
|||||||
@@ -7,9 +7,9 @@ name = "tokio-executor"
|
|||||||
# - Cargo.toml
|
# - Cargo.toml
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.2.x" git tag.
|
# - Create "v0.2.x" git tag.
|
||||||
version = "0.2.0-alpha.4"
|
version = "0.2.0-alpha.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
documentation = "https://docs.rs/tokio-executor/0.2.0-alpha.4/tokio_executor"
|
documentation = "https://docs.rs/tokio-executor/0.2.0-alpha.5/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"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@@ -35,7 +35,7 @@ threadpool = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio-sync = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-sync" }
|
tokio-sync = { version = "=0.2.0-alpha.5", optional = true, path = "../tokio-sync" }
|
||||||
|
|
||||||
tracing = { version = "0.1.5", optional = true }
|
tracing = { version = "0.1.5", optional = true }
|
||||||
futures-util-preview = { version = "=0.3.0-alpha.18", features = ["channel"] }
|
futures-util-preview = { version = "=0.3.0-alpha.18", features = ["channel"] }
|
||||||
@@ -53,8 +53,8 @@ lazy_static = { version = "1", optional = true }
|
|||||||
slab = { version = "0.4.1", optional = true }
|
slab = { version = "0.4.1", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2.0-alpha.4", path = "../tokio" }
|
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" }
|
||||||
tokio-test = { version = "0.2.0-alpha.4", path = "../tokio-test" }
|
tokio-test = { version = "=0.2.0-alpha.5", path = "../tokio-test" }
|
||||||
|
|
||||||
futures-core-preview = "=0.3.0-alpha.18"
|
futures-core-preview = "=0.3.0-alpha.18"
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-executor/0.2.0-alpha.4")]
|
#![doc(html_root_url = "https://docs.rs/tokio-executor/0.2.0-alpha.5")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
# 0.2.0-alpha.5 (September 19, 2019)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
- propagate flush for stdout / stderr. (#1528).
|
||||||
|
|
||||||
# 0.2.0-alpha.4 (August 29, 2019)
|
# 0.2.0-alpha.4 (August 29, 2019)
|
||||||
|
|
||||||
- Track tokio release.
|
- Track tokio release.
|
||||||
|
|||||||
+7
-7
@@ -7,14 +7,14 @@ name = "tokio-fs"
|
|||||||
# - Cargo.toml
|
# - Cargo.toml
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.2.x" git tag.
|
# - Create "v0.2.x" git tag.
|
||||||
version = "0.2.0-alpha.4"
|
version = "0.2.0-alpha.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-fs/0.2.0-alpha.4/tokio_fs"
|
documentation = "https://docs.rs/tokio-fs/0.2.0-alpha.5/tokio_fs"
|
||||||
description = """
|
description = """
|
||||||
Filesystem API for Tokio.
|
Filesystem API for Tokio.
|
||||||
"""
|
"""
|
||||||
@@ -22,17 +22,17 @@ keywords = ["tokio", "futures", "fs", "file", "async"]
|
|||||||
categories = ["asynchronous", "network-programming", "filesystem"]
|
categories = ["asynchronous", "network-programming", "filesystem"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio-io = { version = "=0.2.0-alpha.4", features = ["util"], path = "../tokio-io" }
|
tokio-io = { version = "=0.2.0-alpha.5", features = ["util"], path = "../tokio-io" }
|
||||||
tokio-executor = { version = "=0.2.0-alpha.4", features = ["blocking"], path = "../tokio-executor" }
|
tokio-executor = { version = "=0.2.0-alpha.5", features = ["blocking"], path = "../tokio-executor" }
|
||||||
tokio-sync = { version = "=0.2.0-alpha.4", path = "../tokio-sync" }
|
tokio-sync = { version = "=0.2.0-alpha.5", path = "../tokio-sync" }
|
||||||
|
|
||||||
futures-core-preview = "=0.3.0-alpha.18"
|
futures-core-preview = "=0.3.0-alpha.18"
|
||||||
futures-util-preview = "=0.3.0-alpha.18"
|
futures-util-preview = "=0.3.0-alpha.18"
|
||||||
lazy_static = "1.3.0"
|
lazy_static = "1.3.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "=0.2.0-alpha.4", path = "../tokio" }
|
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" }
|
||||||
tokio-test = { version = "=0.2.0-alpha.4", path = "../tokio-test" }
|
tokio-test = { version = "=0.2.0-alpha.5", path = "../tokio-test" }
|
||||||
|
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-fs/0.2.0-alpha.4")]
|
#![doc(html_root_url = "https://docs.rs/tokio-fs/0.2.0-alpha.5")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
# 0.2.0-alpha.5 (September 19, 2019)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- bring back generic `split` utility (#1521).
|
||||||
|
- enable buffering both reads and writes (#1558).
|
||||||
|
|
||||||
# 0.2.0-alpha.4 (August 29, 2019)
|
# 0.2.0-alpha.4 (August 29, 2019)
|
||||||
|
|
||||||
- Track tokio release.
|
- Track tokio release.
|
||||||
|
|||||||
+4
-4
@@ -7,13 +7,13 @@ name = "tokio-io"
|
|||||||
# - Cargo.toml
|
# - Cargo.toml
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.2.0-alpha.4"
|
version = "0.2.0-alpha.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-io/0.2.0-alpha.4/tokio_io"
|
documentation = "https://docs.rs/tokio-io/0.2.0-alpha.5/tokio_io"
|
||||||
description = """
|
description = """
|
||||||
Core I/O primitives for asynchronous I/O in Rust.
|
Core I/O primitives for asynchronous I/O in Rust.
|
||||||
"""
|
"""
|
||||||
@@ -31,8 +31,8 @@ pin-utils = { version = "=0.1.0-alpha.4", optional = true }
|
|||||||
pin-project = "=0.4.0-alpha.11"
|
pin-project = "=0.4.0-alpha.11"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2.0-alpha.4", path = "../tokio" }
|
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" }
|
||||||
tokio-test = { version = "0.2.0-alpha.4", path = "../tokio-test" }
|
tokio-test = { version = "=0.2.0-alpha.5", path = "../tokio-test" }
|
||||||
|
|
||||||
futures-util-preview = "=0.3.0-alpha.18"
|
futures-util-preview = "=0.3.0-alpha.18"
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-io/0.2.0-alpha.4")]
|
#![doc(html_root_url = "https://docs.rs/tokio-io/0.2.0-alpha.5")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
@@ -7,13 +7,13 @@ name = "tokio-macros"
|
|||||||
# - Cargo.toml
|
# - Cargo.toml
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.2.0-alpha.4"
|
version = "0.2.0-alpha.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-macros/0.2.0-alpha.4/tokio_macros"
|
documentation = "https://docs.rs/tokio-macros/0.2.0-alpha.5/tokio_macros"
|
||||||
description = """
|
description = """
|
||||||
Tokio's proc macros.
|
Tokio's proc macros.
|
||||||
"""
|
"""
|
||||||
@@ -29,7 +29,7 @@ quote = "1"
|
|||||||
syn = { version = "1", features = ["full"] }
|
syn = { version = "1", features = ["full"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2.0-alpha.4", path = "../tokio", default-features = false, features = ["rt-full"] }
|
tokio = { version = "=0.2.0-alpha.5", path = "../tokio", default-features = false, features = ["rt-full"] }
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.0-alpha.4")]
|
#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.0-alpha.5")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
# 0.2.0-alpha.5 (September 19, 2019)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- platform specific `Command` methods (#1516).
|
||||||
|
- Implement `From<std::process::Command>` for `Command` (#1513).
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- doc generation (#1575).
|
||||||
|
|
||||||
# 0.2.0-alpha.4 (August 29, 2019)
|
# 0.2.0-alpha.4 (August 29, 2019)
|
||||||
|
|
||||||
- Track tokio release.
|
- Track tokio release.
|
||||||
|
|||||||
@@ -7,14 +7,14 @@ name = "tokio-net"
|
|||||||
# - Cargo.toml
|
# - Cargo.toml
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.2.x" git tag.
|
# - Create "v0.2.x" git tag.
|
||||||
version = "0.2.0-alpha.4"
|
version = "0.2.0-alpha.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-net/0.2.0-alpha.4/tokio_net"
|
documentation = "https://docs.rs/tokio-net/0.2.0-alpha.5/tokio_net"
|
||||||
description = """
|
description = """
|
||||||
Event loop that drives Tokio I/O resources.
|
Event loop that drives Tokio I/O resources.
|
||||||
"""
|
"""
|
||||||
@@ -62,10 +62,10 @@ uds = [
|
|||||||
log = ["tracing/log"]
|
log = ["tracing/log"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio-codec = { version = "=0.2.0-alpha.4", path = "../tokio-codec" }
|
tokio-codec = { version = "=0.2.0-alpha.5", path = "../tokio-codec" }
|
||||||
tokio-executor = { version = "=0.2.0-alpha.4", features = ["blocking"], path = "../tokio-executor" }
|
tokio-executor = { version = "=0.2.0-alpha.5", features = ["blocking"], path = "../tokio-executor" }
|
||||||
tokio-io = { version = "=0.2.0-alpha.4", path = "../tokio-io" }
|
tokio-io = { version = "=0.2.0-alpha.5", path = "../tokio-io" }
|
||||||
tokio-sync = { version = "=0.2.0-alpha.4", path = "../tokio-sync" }
|
tokio-sync = { version = "=0.2.0-alpha.5", path = "../tokio-sync" }
|
||||||
|
|
||||||
tracing = { version = "0.1.5", optional = true }
|
tracing = { version = "0.1.5", optional = true }
|
||||||
|
|
||||||
@@ -103,8 +103,8 @@ optional = true
|
|||||||
tracing = { version = "0.1.5", features = ["log"] }
|
tracing = { version = "0.1.5", features = ["log"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2.0-alpha.4", path = "../tokio" }
|
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" }
|
||||||
tokio-test = { version = "0.2.0-alpha.4", path = "../tokio-test" }
|
tokio-test = { version = "=0.2.0-alpha.5", path = "../tokio-test" }
|
||||||
num_cpus = "1.8.0"
|
num_cpus = "1.8.0"
|
||||||
tokio-io-pool = "0.1.4"
|
tokio-io-pool = "0.1.4"
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-net/0.2.0-alpha.4")]
|
#![doc(html_root_url = "https://docs.rs/tokio-net/0.2.0-alpha.5")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
# 0.2.0-alpha.5 (September 19, 2019)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- rename `Lock` -> `Mutex` and make it more like `std::sync::Mutex` (#1573).
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- `Barrier`, an async version of `std::sync::Barrier` (#1571).
|
||||||
|
|
||||||
# 0.2.0-alpha.4 (August 29, 2019)
|
# 0.2.0-alpha.4 (August 29, 2019)
|
||||||
|
|
||||||
- Track tokio release.
|
- Track tokio release.
|
||||||
|
|||||||
@@ -7,13 +7,13 @@ name = "tokio-sync"
|
|||||||
# - Cargo.toml
|
# - Cargo.toml
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.2.x" git tag.
|
# - Create "v0.2.x" git tag.
|
||||||
version = "0.2.0-alpha.4"
|
version = "0.2.0-alpha.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-sync/0.2.0-alpha.4/tokio_sync"
|
documentation = "https://docs.rs/tokio-sync/0.2.0-alpha.5/tokio_sync"
|
||||||
description = """
|
description = """
|
||||||
Synchronization utilities.
|
Synchronization utilities.
|
||||||
"""
|
"""
|
||||||
@@ -29,8 +29,8 @@ futures-sink-preview = { version = "=0.3.0-alpha.18", optional = true }
|
|||||||
futures-util-preview = { version = "=0.3.0-alpha.18" }
|
futures-util-preview = { version = "=0.3.0-alpha.18" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2.0-alpha.4", path = "../tokio" }
|
tokio = { version = "0.2.0-alpha.5", path = "../tokio" }
|
||||||
tokio-test = { version = "0.2.0-alpha.4", path = "../tokio-test" }
|
tokio-test = { version = "0.2.0-alpha.5", path = "../tokio-test" }
|
||||||
|
|
||||||
env_logger = { version = "0.6", default-features = false }
|
env_logger = { version = "0.6", default-features = false }
|
||||||
loom = { version = "0.2.1", features = ["futures"] }
|
loom = { version = "0.2.1", features = ["futures"] }
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.2.0-alpha.4")]
|
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.2.0-alpha.5")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
# 0.2.0-alpha.5 (September 19, 2019)
|
||||||
|
|
||||||
|
- Track tokio release.
|
||||||
|
|
||||||
# 0.2.0-alpha.4 (August 29, 2019)
|
# 0.2.0-alpha.4 (August 29, 2019)
|
||||||
|
|
||||||
- Track tokio release.
|
- Track tokio release.
|
||||||
|
|||||||
@@ -7,24 +7,24 @@ name = "tokio-test"
|
|||||||
# - Cargo.toml
|
# - Cargo.toml
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.2.x" git tag.
|
# - Create "v0.2.x" git tag.
|
||||||
version = "0.2.0-alpha.4"
|
version = "0.2.0-alpha.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-test/0.2.0-alpha.4/tokio_test"
|
documentation = "https://docs.rs/tokio-test/0.2.0-alpha.5/tokio_test"
|
||||||
description = """
|
description = """
|
||||||
Testing utilities for Tokio- and futures-based code
|
Testing utilities for Tokio- and futures-based code
|
||||||
"""
|
"""
|
||||||
categories = ["asynchronous", "testing"]
|
categories = ["asynchronous", "testing"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "=0.2.0-alpha.4", path = "../tokio" }
|
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" }
|
||||||
tokio-executor = { version = "=0.2.0-alpha.4", path = "../tokio-executor" }
|
tokio-executor = { version = "=0.2.0-alpha.5", path = "../tokio-executor" }
|
||||||
tokio-io = { version = "=0.2.0-alpha.4", path = "../tokio-io" }
|
tokio-io = { version = "=0.2.0-alpha.5", path = "../tokio-io" }
|
||||||
tokio-sync = { version = "=0.2.0-alpha.4", path = "../tokio-sync" }
|
tokio-sync = { version = "=0.2.0-alpha.5", path = "../tokio-sync" }
|
||||||
tokio-timer = { version = "=0.3.0-alpha.4", path = "../tokio-timer" }
|
tokio-timer = { version = "=0.3.0-alpha.5", path = "../tokio-timer" }
|
||||||
|
|
||||||
futures-core-preview = "=0.3.0-alpha.18"
|
futures-core-preview = "=0.3.0-alpha.18"
|
||||||
pin-convert = "0.1.0"
|
pin-convert = "0.1.0"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-test/0.2.0-alpha.4")]
|
#![doc(html_root_url = "https://docs.rs/tokio-test/0.2.0-alpha.5")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
# 0.2.0-alpha.5 (September 19, 2019)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- rename `sleep` to `delay_for` (#1518).
|
||||||
|
|
||||||
# 0.2.0-alpha.4 (August 29, 2019)
|
# 0.2.0-alpha.4 (August 29, 2019)
|
||||||
|
|
||||||
- Track tokio release.
|
- Track tokio release.
|
||||||
|
|||||||
@@ -8,12 +8,12 @@ name = "tokio-timer"
|
|||||||
# - README.md
|
# - README.md
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.3.x" git tag.
|
# - Create "v0.3.x" git tag.
|
||||||
version = "0.3.0-alpha.4"
|
version = "0.3.0-alpha.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
documentation = "https://docs.rs/tokio-timer/0.3.0-alpha.4/tokio_timer"
|
documentation = "https://docs.rs/tokio-timer/0.3.0-alpha.5/tokio_timer"
|
||||||
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"
|
||||||
description = """
|
description = """
|
||||||
@@ -24,8 +24,8 @@ Timer facilities for Tokio
|
|||||||
async-traits = []
|
async-traits = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio-executor = { version = "=0.2.0-alpha.4", path = "../tokio-executor" }
|
tokio-executor = { version = "=0.2.0-alpha.5", path = "../tokio-executor" }
|
||||||
tokio-sync = { version = "=0.2.0-alpha.4", path = "../tokio-sync" }
|
tokio-sync = { version = "=0.2.0-alpha.5", path = "../tokio-sync" }
|
||||||
|
|
||||||
futures-core-preview = "=0.3.0-alpha.18"
|
futures-core-preview = "=0.3.0-alpha.18"
|
||||||
futures-util-preview = "=0.3.0-alpha.18"
|
futures-util-preview = "=0.3.0-alpha.18"
|
||||||
@@ -36,9 +36,9 @@ slab = "0.4.1"
|
|||||||
# optionals
|
# optionals
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2.0-alpha.4", path = "../tokio" }
|
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" }
|
||||||
tokio-sync = { version = "0.2.0-alpha.4", path = "../tokio-sync", features = ["async-traits"] }
|
tokio-sync = { version = "=0.2.0-alpha.5", path = "../tokio-sync", features = ["async-traits"] }
|
||||||
tokio-test = { version = "0.2.0-alpha.4", path = "../tokio-test" }
|
tokio-test = { version = "=0.2.0-alpha.5", path = "../tokio-test" }
|
||||||
|
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.3.0-alpha.4")]
|
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.3.0-alpha.5")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
# 0.3.0-alpha.5 (September 19, 2019)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- `TlsStream::get_ref` and `TlsStream::get_mut` (#1537).
|
||||||
|
|
||||||
# 0.3.0-alpha.4 (August 30, 2019)
|
# 0.3.0-alpha.4 (August 30, 2019)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -8,13 +8,13 @@ name = "tokio-tls"
|
|||||||
# - README.md
|
# - README.md
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.3.x" git tag.
|
# - Create "v0.3.x" git tag.
|
||||||
version = "0.3.0-alpha.4"
|
version = "0.3.0-alpha.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-tls/0.3.0-alpha.4/tokio_tls/"
|
documentation = "https://docs.rs/tokio-tls/0.3.0-alpha.5/tokio_tls/"
|
||||||
description = """
|
description = """
|
||||||
An implementation of TLS/SSL streams for Tokio giving an implementation of TLS
|
An implementation of TLS/SSL streams for Tokio giving an implementation of TLS
|
||||||
for nonblocking I/O streams.
|
for nonblocking I/O streams.
|
||||||
@@ -26,11 +26,11 @@ travis-ci = { repository = "tokio-rs/tokio-tls" }
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
native-tls = "0.2"
|
native-tls = "0.2"
|
||||||
tokio-io = { version = "=0.2.0-alpha.4", path = "../tokio-io" }
|
tokio-io = { version = "=0.2.0-alpha.5", path = "../tokio-io" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "=0.2.0-alpha.4", path = "../tokio" }
|
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" }
|
||||||
tokio-net = { version = "=0.2.0-alpha.4", path = "../tokio-net", features = ["tcp", "async-traits"] }
|
tokio-net = { version = "=0.2.0-alpha.5", path = "../tokio-net", features = ["tcp", "async-traits"] }
|
||||||
|
|
||||||
cfg-if = "0.1"
|
cfg-if = "0.1"
|
||||||
env_logger = { version = "0.6", default-features = false }
|
env_logger = { version = "0.6", default-features = false }
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-tls/0.3.0-alpha.4")]
|
#![doc(html_root_url = "https://docs.rs/tokio-tls/0.3.0-alpha.5")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
@@ -1,6 +1,15 @@
|
|||||||
This changelog only applies to the `tokio` crate proper. Each sub crate
|
This changelog only applies to the `tokio` crate proper. Each sub crate
|
||||||
maintains its own changelog tracking changes made in each respective sub crate.
|
maintains its own changelog tracking changes made in each respective sub crate.
|
||||||
|
|
||||||
|
# 0.2.0-alpha.5 (September 19, 2019)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- rename `sleep` to `delay_for` (#1518).
|
||||||
|
- rename `Lock` to `Mutex` and make it more like `std::sync::Mutex` (#1573).
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- add generic `split` for `AsyncRead + AsyncWrite` (#1521).
|
||||||
|
|
||||||
# 0.2.0-alpha.4 (August 29, 2019)
|
# 0.2.0-alpha.4 (August 29, 2019)
|
||||||
|
|
||||||
- Track tokio-net release.
|
- Track tokio-net release.
|
||||||
|
|||||||
+13
-13
@@ -8,12 +8,12 @@ name = "tokio"
|
|||||||
# - README.md
|
# - README.md
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.2.x" git tag.
|
# - Create "v0.2.x" git tag.
|
||||||
version = "0.2.0-alpha.4"
|
version = "0.2.0-alpha.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
documentation = "https://docs.rs/tokio/0.2.0-alpha.4/tokio/"
|
documentation = "https://docs.rs/tokio/0.2.0-alpha.5/tokio/"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
description = """
|
description = """
|
||||||
@@ -64,22 +64,22 @@ futures-util-preview = { version = "=0.3.0-alpha.18", features = ["sink"] }
|
|||||||
# Everything else is optional...
|
# Everything else is optional...
|
||||||
bytes = { version = "0.4", optional = true }
|
bytes = { version = "0.4", optional = true }
|
||||||
num_cpus = { version = "1.8.0", optional = true }
|
num_cpus = { version = "1.8.0", optional = true }
|
||||||
tokio-codec = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-codec" }
|
tokio-codec = { version = "=0.2.0-alpha.5", optional = true, path = "../tokio-codec" }
|
||||||
tokio-fs = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-fs" }
|
tokio-fs = { version = "=0.2.0-alpha.5", optional = true, path = "../tokio-fs" }
|
||||||
tokio-io = { version = "=0.2.0-alpha.4", optional = true, features = ["util"], path = "../tokio-io" }
|
tokio-io = { version = "=0.2.0-alpha.5", optional = true, features = ["util"], path = "../tokio-io" }
|
||||||
tokio-executor = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-executor" }
|
tokio-executor = { version = "=0.2.0-alpha.5", optional = true, path = "../tokio-executor" }
|
||||||
tokio-macros = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-macros" }
|
tokio-macros = { version = "=0.2.0-alpha.5", optional = true, path = "../tokio-macros" }
|
||||||
tokio-net = { version = "=0.2.0-alpha.4", optional = true, features = ["async-traits"], path = "../tokio-net" }
|
tokio-net = { version = "=0.2.0-alpha.5", optional = true, features = ["async-traits"], path = "../tokio-net" }
|
||||||
tokio-sync = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-sync", features = ["async-traits"] }
|
tokio-sync = { version = "=0.2.0-alpha.5", optional = true, path = "../tokio-sync", features = ["async-traits"] }
|
||||||
tokio-timer = { version = "=0.3.0-alpha.4", optional = true, path = "../tokio-timer", features = ["async-traits"] }
|
tokio-timer = { version = "=0.3.0-alpha.5", optional = true, path = "../tokio-timer", features = ["async-traits"] }
|
||||||
tracing-core = { version = "0.1", optional = true }
|
tracing-core = { version = "0.1", optional = true }
|
||||||
|
|
||||||
[target.'cfg(feature = "tracing")'.dependencies]
|
[target.'cfg(feature = "tracing")'.dependencies]
|
||||||
tokio-net = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-net", features = ["tracing", "async-traits"] }
|
tokio-net = { version = "=0.2.0-alpha.5", optional = true, path = "../tokio-net", features = ["tracing", "async-traits"] }
|
||||||
tokio-executor = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-executor", features = ["tracing"] }
|
tokio-executor = { version = "=0.2.0-alpha.5", optional = true, path = "../tokio-executor", features = ["tracing"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio-test = { version = "0.2.0-alpha.4", path = "../tokio-test" }
|
tokio-test = { version = "=0.2.0-alpha.5", path = "../tokio-test" }
|
||||||
|
|
||||||
futures-preview = "=0.3.0-alpha.18"
|
futures-preview = "=0.3.0-alpha.18"
|
||||||
futures-util-preview = "=0.3.0-alpha.18"
|
futures-util-preview = "=0.3.0-alpha.18"
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio/0.2.0-alpha.4")]
|
#![doc(html_root_url = "https://docs.rs/tokio/0.2.0-alpha.5")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
Reference in New Issue
Block a user