chore: prepare for v0.2.0-alpha.1 release (#1410)

This commit is contained in:
Lucio Franco
2019-08-08 12:48:53 -07:00
committed by Carl Lerche
parent 2e69f2a7fd
commit 50e5d401df
77 changed files with 304 additions and 512 deletions
+5
View File
@@ -1,3 +1,8 @@
# 0.3.0-alpha.1 (August 8, 2019)
### Changed
- Switch to `async`, `await`, and `std::future`.
# 0.2.11 (May 14, 2019)
### Added
+13 -12
View File
@@ -8,27 +8,27 @@ name = "tokio-timer"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.3.x" git tag.
version = "0.3.0"
version = "0.3.0-alpha.1"
edition = "2018"
authors = ["Carl Lerche <[email protected]>"]
authors = ["Tokio Contributors <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio-timer/0.2.11/tokio_timer"
documentation = "https://docs.rs/tokio-timer/0.3.0-alpha.1/tokio_timer"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
description = """
Timer facilities for Tokio
"""
publish = false
[features]
async-traits = []
[dependencies]
tokio-executor = { version = "0.2.0", path = "../tokio-executor" }
tokio-sync = { version = "0.2.0", path = "../tokio-sync" }
futures-core-preview = "0.3.0-alpha.17"
futures-util-preview = "0.3.0-alpha.17"
tokio-executor = { version = "=0.2.0-alpha.1", path = "../tokio-executor" }
tokio-sync = { version = "=0.2.0-alpha.1", path = "../tokio-sync" }
futures-core-preview = "=0.3.0-alpha.17"
futures-util-preview = "=0.3.0-alpha.17"
crossbeam-utils = "0.6.0"
# Backs `DelayQueue`
@@ -36,8 +36,9 @@ slab = "0.4.1"
# optionals
[dev-dependencies]
tokio = { version = "=0.2.0-alpha.1", path = "../tokio" }
tokio-current-thread = { version = "=0.2.0-alpha.1", path = "../tokio-current-thread" }
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"
tokio = { version = "0.2.0", path = "../tokio" }
tokio-current-thread = { version = "0.2.0", path = "../tokio-current-thread" }
tokio-sync = { version = "0.2.0", path = "../tokio-sync", features = ["async-traits"] }
tokio-test = { version = "0.2.0", path = "../tokio-test" }
-6
View File
@@ -2,12 +2,6 @@
Timer facilities for Tokio
[Documentation](https://docs.rs/tokio-timer/0.2.11/tokio_timer/)
## Overview
This crate provides timer facilities for usage with Tokio.
## License
This project is licensed under the [MIT license](LICENSE).
+1 -1
View File
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.10")]
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.3.0-alpha.1")]
#![deny(missing_docs, missing_debug_implementations, rust_2018_idioms)]
#![cfg_attr(test, deny(warnings))]
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]