tower-make:v0.3.0-alpha.2

This commit is contained in:
Sean McArthur 2019-09-20 14:13:37 -07:00
parent 52075f3c6f
commit 55b5150a89
5 changed files with 9 additions and 5 deletions

View File

@ -38,7 +38,7 @@ tower-discover = { version = "=0.3.0-alpha.1", path = "../tower-discover" }
tower-layer = { version = "=0.3.0-alpha.1", path = "../tower-layer" }
tower-load = { version = "=0.3.0-alpha.1", path = "../tower-load" }
tower-service = "=0.3.0-alpha.1"
tower-make = { version = "=0.3.0-alpha.1", path = "../tower-make" }
tower-make = { version = "=0.3.0-alpha.2", path = "../tower-make" }
slab = "0.4"
[dev-dependencies]

View File

@ -1,3 +1,7 @@
# 0.3.0-alpha.2 (September 20, 2019)
- Update `tokio-io` to `alpha.5`
# 0.3.0-alpha.1 (September 11, 2019)
- Bump version to match all the other crates with `std::future`

View File

@ -1,12 +1,12 @@
[package]
name = "tower-make"
version = "0.3.0-alpha.1"
version = "0.3.0-alpha.2"
authors = ["Tower Maintainers <team@tower-rs.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tower-rs/tower"
homepage = "https://github.com/tower-rs/tower"
documentation = "https://docs.rs/tower-make/0.3.0-alpha.1"
documentation = "https://docs.rs/tower-make/0.3.0-alpha.2"
description = """
Trait aliases for Services that produce specific types of Responses.
"""

View File

@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tower-make/0.3.0-alpha.1")]
#![doc(html_root_url = "https://docs.rs/tower-make/0.3.0-alpha.2")]
#![deny(rust_2018_idioms)]
//! Trait aliases for Services that produce specific types of Responses.

View File

@ -24,5 +24,5 @@ edition = "2018"
[dependencies]
log = "0.4.1"
tower-service = "=0.3.0-alpha.1"
tower-make = { version = "=0.3.0-alpha.1", path = "../tower-make" }
tower-make = { version = "=0.3.0-alpha.2", path = "../tower-make" }
pin-project = "=0.4.0-alpha.11"