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
+6
View File
@@ -1,3 +1,9 @@
# 0.3.0-alpha.2 (August 17, 2019)
### Changed
- Update `futures` dependency to 0.3.0-alpha.18.
- Switch `with_default(..., || )` to `set_default(...) -> Guard` (#1449).
# 0.3.0-alpha.1 (August 8, 2019)
### Changed
+7 -7
View File
@@ -8,12 +8,12 @@ name = "tokio-timer"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.3.x" git tag.
version = "0.3.0-alpha.1"
version = "0.3.0-alpha.2"
edition = "2018"
authors = ["Tokio Contributors <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio-timer/0.3.0-alpha.1/tokio_timer"
documentation = "https://docs.rs/tokio-timer/0.3.0-alpha.2/tokio_timer"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
description = """
@@ -24,8 +24,8 @@ Timer facilities for Tokio
async-traits = []
[dependencies]
tokio-executor = { version = "=0.2.0-alpha.1", path = "../tokio-executor" }
tokio-sync = { version = "=0.2.0-alpha.1", path = "../tokio-sync" }
tokio-executor = { version = "=0.2.0-alpha.2", path = "../tokio-executor" }
tokio-sync = { version = "=0.2.0-alpha.2", path = "../tokio-sync" }
futures-core-preview = "=0.3.0-alpha.18"
futures-util-preview = "=0.3.0-alpha.18"
@@ -36,8 +36,8 @@ slab = "0.4.1"
# optionals
[dev-dependencies]
tokio = { version = "=0.2.0-alpha.1", path = "../tokio" }
tokio-sync = { version = "=0.2.0-alpha.1", path = "../tokio-sync", features = ["async-traits"] }
tokio-test = { version = "=0.2.0-alpha.1", path = "../tokio-test" }
tokio = { version = "0.2.0-alpha.1", path = "../tokio" }
tokio-sync = { version = "0.2.0-alpha.1", path = "../tokio-sync", features = ["async-traits"] }
tokio-test = { version = "0.2.0-alpha.1", path = "../tokio-test" }
rand = "0.7"
+1 -1
View File
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.3.0-alpha.1")]
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.3.0-alpha.2")]
#![warn(
missing_debug_implementations,
missing_docs,