chore: prepare 0.2.0-alpha.2 release (#1465)

This commit is contained in:
Carl Lerche
2019-08-17 23:34:25 -07:00
committed by GitHub
parent 9f0daad5ac
commit 88b4ec84d7
35 changed files with 260 additions and 120 deletions
+13
View File
@@ -1,3 +1,16 @@
# 0.2.0-alpha.2 (August 17, 2019)
### Changed
- Renamed `tokio-net` from `tokio-reactor` (#1450).
- Switch `with_default(..., || )` to `set_default(...) -> Guard` (#1449).
- Update `futures` dependency to 0.3.0-alpha.18.
### Added
- Import `tokio-tcp` (#1456).
- Import `tokio-udp` (#1459).
- Import `tokio-uds` (#1462).
- Import `tokio-signal` (#1463).
# 0.2.0-alpha.1 (August 8, 2019)
### Changed
+8 -8
View File
@@ -7,14 +7,14 @@ name = "tokio-net"
# - Cargo.toml
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
version = "0.2.0-alpha.1"
version = "0.2.0-alpha.2"
edition = "2018"
authors = ["Tokio Contributors <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-net/0.2.0-alpha.1/tokio_net"
documentation = "https://docs.rs/tokio-net/0.2.0-alpha.2/tokio_net"
description = """
Event loop that drives Tokio I/O resources.
"""
@@ -48,10 +48,10 @@ uds = [
]
[dependencies]
tokio-codec = { version = "=0.2.0-alpha.1", path = "../tokio-codec" }
tokio-executor = { version = "=0.2.0-alpha.1", path = "../tokio-executor" }
tokio-io = { version = "=0.2.0-alpha.1", path = "../tokio-io" }
tokio-sync = { version = "=0.2.0-alpha.1", path = "../tokio-sync" }
tokio-codec = { version = "=0.2.0-alpha.2", path = "../tokio-codec" }
tokio-executor = { version = "=0.2.0-alpha.2", path = "../tokio-executor" }
tokio-io = { version = "=0.2.0-alpha.2", path = "../tokio-io" }
tokio-sync = { version = "=0.2.0-alpha.2", path = "../tokio-sync" }
# driver implementation
crossbeam-utils = "0.6.0"
@@ -81,8 +81,8 @@ features = ["consoleapi", "minwindef", "wincon"]
optional = true
[dev-dependencies]
tokio = { version = "=0.2.0-alpha.1", path = "../tokio" }
tokio-test = { version = "=0.2.0-alpha.1", path = "../tokio-test" }
tokio = { version = "0.2.0-alpha.1", path = "../tokio" }
tokio-test = { version = "0.2.0-alpha.1", path = "../tokio-test" }
num_cpus = "1.8.0"
tokio-io-pool = "0.1.4"
+1 -1
View File
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-net/0.2.0-alpha.1")]
#![doc(html_root_url = "https://docs.rs/tokio-net/0.2.0-alpha.2")]
#![warn(
missing_debug_implementations,
missing_docs,