Bump version to v0.1.11 (#675)

This fixes the dependency on `tokio-async-await` to not be scoped to
unix platforms.

Fixes #673
This commit is contained in:
Carl Lerche
2018-09-28 11:32:52 -07:00
committed by GitHub
parent 1e45237a28
commit 2c85cd0991
3 changed files with 10 additions and 6 deletions
+4
View File
@@ -1,6 +1,10 @@
This changelog only applies to the `tokio` crate proper. Each sub crate
maintains its own changelog tracking changes made in each respective sub crate.
# 0.1.11 (September 28, 2018)
* Fix `tokio-async-await` dependency (#675).
# 0.1.10 (September 27, 2018)
* Fix minimal versions
+5 -5
View File
@@ -6,11 +6,11 @@ name = "tokio"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
version = "0.1.10"
version = "0.1.11"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio/0.1.10/tokio/"
documentation = "https://docs.rs/tokio/0.1.11/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
@@ -70,12 +70,12 @@ futures = "0.1.20"
# Needed until `reactor` is removed from `tokio`.
mio = "0.6.14"
[target.'cfg(unix)'.dependencies]
tokio-uds = { version = "0.2.1", path = "tokio-uds" }
# Needed for async/await preview support
tokio-async-await = { version = "0.1.0", path = "tokio-async-await", optional = true }
[target.'cfg(unix)'.dependencies]
tokio-uds = { version = "0.2.1", path = "tokio-uds" }
[dev-dependencies]
env_logger = { version = "0.5", default-features = false }
flate2 = { version = "1", features = ["tokio"] }
+1 -1
View File
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio/0.1.10")]
#![doc(html_root_url = "https://docs.rs/tokio/0.1.11")]
#![deny(missing_docs, warnings, missing_debug_implementations)]
#![cfg_attr(feature = "async-await-preview", feature(
async_await,