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
+5
View File
@@ -1,3 +1,8 @@
# 0.2.0-alpha.2 (August 17, 2019)
### Changed
- Update `futures` dependency to 0.3.0-alpha.18.
# 0.2.0-alpha.1 (August 8, 2019)
### Changed
+5 -5
View File
@@ -7,14 +7,14 @@ name = "tokio-fs"
# - 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-fs/0.2.0-alpha.1/tokio_fs"
documentation = "https://docs.rs/tokio-fs/0.2.0-alpha.2/tokio_fs"
description = """
Filesystem API for Tokio.
"""
@@ -22,14 +22,14 @@ keywords = ["tokio", "futures", "fs", "file", "async"]
categories = ["asynchronous", "network-programming", "filesystem"]
[dependencies]
tokio-io = { version = "=0.2.0-alpha.1", features = ["util"], path = "../tokio-io" }
tokio-executor = { version = "=0.2.0-alpha.1", features = ["threadpool"], path = "../tokio-executor" }
tokio-io = { version = "=0.2.0-alpha.2", features = ["util"], path = "../tokio-io" }
tokio-executor = { version = "=0.2.0-alpha.2", features = ["threadpool"], path = "../tokio-executor" }
futures-core-preview = "=0.3.0-alpha.18"
futures-util-preview = "=0.3.0-alpha.18"
[dev-dependencies]
tokio = { version = "=0.2.0-alpha.1", path = "../tokio" }
tokio = { version = "0.2.0-alpha.1", path = "../tokio" }
rand = "0.7"
tempfile = "3"
+1 -1
View File
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-fs/0.2.0-alpha.1")]
#![doc(html_root_url = "https://docs.rs/tokio-fs/0.2.0-alpha.2")]
#![warn(
missing_debug_implementations,
missing_docs,