summaryrefslogtreecommitdiffstats
path: root/tokio-test
diff options
context:
space:
mode:
authorJon Gjengset <jon@thesquareplanet.com>2019-09-30 18:35:52 -0400
committerLucio Franco <luciofranco14@gmail.com>2019-09-30 18:35:52 -0400
commit5efe31f2ed3c797e8055306a05faa3d7e786e7b6 (patch)
treec7aaabac5bd77f9be28ad60a3441f56122a16673 /tokio-test
parent5ce5a0a0e0fa529a571796d62854a19282848e72 (diff)
Prepare for release of 0.2.0-alpha.6 (#1617)
Note that `tokio-timer` and `tokio-tls` become 0.3.0-alpha.6 (not 0.2.0)
Diffstat (limited to 'tokio-test')
-rw-r--r--tokio-test/CHANGELOG.md5
-rw-r--r--tokio-test/Cargo.toml14
-rw-r--r--tokio-test/src/lib.rs2
3 files changed, 13 insertions, 8 deletions
diff --git a/tokio-test/CHANGELOG.md b/tokio-test/CHANGELOG.md
index b9fa3066..2cd50922 100644
--- a/tokio-test/CHANGELOG.md
+++ b/tokio-test/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.2.0-alpha.6 (September 30, 2019)
+
+- Move to `futures-*-preview 0.3.0-alpha.19`
+- Move to `pin-project 0.4`
+
# 0.2.0-alpha.5 (September 19, 2019)
- Track tokio release.
diff --git a/tokio-test/Cargo.toml b/tokio-test/Cargo.toml
index 23b96ad9..2c5fbf4b 100644
--- a/tokio-test/Cargo.toml
+++ b/tokio-test/Cargo.toml
@@ -7,24 +7,24 @@ name = "tokio-test"
# - Cargo.toml
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
-version = "0.2.0-alpha.5"
+version = "0.2.0-alpha.6"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
-documentation = "https://docs.rs/tokio-test/0.2.0-alpha.5/tokio_test"
+documentation = "https://docs.rs/tokio-test/0.2.0-alpha.6/tokio_test"
description = """
Testing utilities for Tokio- and futures-based code
"""
categories = ["asynchronous", "testing"]
[dependencies]
-tokio = { version = "=0.2.0-alpha.5", path = "../tokio" }
-tokio-executor = { version = "=0.2.0-alpha.5", path = "../tokio-executor" }
-tokio-io = { version = "=0.2.0-alpha.5", path = "../tokio-io" }
-tokio-sync = { version = "=0.2.0-alpha.5", path = "../tokio-sync" }
-tokio-timer = { version = "=0.3.0-alpha.5", path = "../tokio-timer" }
+tokio = { version = "=0.2.0-alpha.6", path = "../tokio" }
+tokio-executor = { version = "=0.2.0-alpha.6", path = "../tokio-executor" }
+tokio-io = { version = "=0.2.0-alpha.6", path = "../tokio-io" }
+tokio-sync = { version = "=0.2.0-alpha.6", path = "../tokio-sync" }
+tokio-timer = { version = "=0.3.0-alpha.6", path = "../tokio-timer" }
futures-core-preview = "=0.3.0-alpha.19"
pin-convert = "0.1.0"
diff --git a/tokio-test/src/lib.rs b/tokio-test/src/lib.rs
index 9f97fa30..58499bbb 100644
--- a/tokio-test/src/lib.rs
+++ b/tokio-test/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-test/0.2.0-alpha.5")]
+#![doc(html_root_url = "https://docs.rs/tokio-test/0.2.0-alpha.6")]
#![warn(
missing_debug_implementations,
missing_docs,