diff --git a/tower-balance/Cargo.toml b/tower-balance/Cargo.toml index 6b19314..05e33ea 100644 --- a/tower-balance/Cargo.toml +++ b/tower-balance/Cargo.toml @@ -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] diff --git a/tower-make/CHANGELOG.md b/tower-make/CHANGELOG.md index a053c36..542531f 100644 --- a/tower-make/CHANGELOG.md +++ b/tower-make/CHANGELOG.md @@ -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` diff --git a/tower-make/Cargo.toml b/tower-make/Cargo.toml index 788f077..3ef98e3 100644 --- a/tower-make/Cargo.toml +++ b/tower-make/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "tower-make" -version = "0.3.0-alpha.1" +version = "0.3.0-alpha.2" authors = ["Tower Maintainers "] 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. """ diff --git a/tower-make/src/lib.rs b/tower-make/src/lib.rs index 1f27621..0701b78 100644 --- a/tower-make/src/lib.rs +++ b/tower-make/src/lib.rs @@ -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. diff --git a/tower-reconnect/Cargo.toml b/tower-reconnect/Cargo.toml index f5cdcc0..7efa9a5 100644 --- a/tower-reconnect/Cargo.toml +++ b/tower-reconnect/Cargo.toml @@ -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"