summaryrefslogtreecommitdiffstats
path: root/tokio-timer
diff options
context:
space:
mode:
authorLucio Franco <luciofranco14@gmail.com>2019-08-08 15:48:53 -0400
committerCarl Lerche <me@carllerche.com>2019-08-08 12:48:53 -0700
commit50e5d401df9931eafabee554bb1a370958fc57d2 (patch)
tree46ee622b3167f98f7cb0dc850e3f2de5e9f7ce87 /tokio-timer
parent2e69f2a7fddfe3d9940ace8ed5610cca83b75369 (diff)
chore: prepare for v0.2.0-alpha.1 release (#1410)
Diffstat (limited to 'tokio-timer')
-rw-r--r--tokio-timer/CHANGELOG.md5
-rw-r--r--tokio-timer/Cargo.toml25
-rw-r--r--tokio-timer/README.md6
-rw-r--r--tokio-timer/src/lib.rs2
4 files changed, 19 insertions, 19 deletions
diff --git a/tokio-timer/CHANGELOG.md b/tokio-timer/CHANGELOG.md
index ca5d1069..5349ed05 100644
--- a/tokio-timer/CHANGELOG.md
+++ b/tokio-timer/CHANGELOG.md
@@ -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
diff --git a/tokio-timer/Cargo.toml b/tokio-timer/Cargo.toml
index 3fb3cbd2..e18ec683 100644
--- a/tokio-timer/Cargo.toml
+++ b/tokio-timer/Cargo.toml
@@ -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 <me@carllerche.com>"]
+authors = ["Tokio Contributors <team@tokio.rs>"]
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" }
diff --git a/tokio-timer/README.md b/tokio-timer/README.md
index b4908eed..d3f07640 100644
--- a/tokio-timer/README.md
+++ b/tokio-timer/README.md
@@ -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).
diff --git a/tokio-timer/src/lib.rs b/tokio-timer/src/lib.rs
index 52e7e6c6..2ed1338e 100644
--- a/tokio-timer/src/lib.rs
+++ b/tokio-timer/src/lib.rs
@@ -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))))]