diff --git a/tower-balance/CHANGELOG.md b/tower-balance/CHANGELOG.md index c3e80f4..19df3db 100644 --- a/tower-balance/CHANGELOG.md +++ b/tower-balance/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 (September 11, 2019) - Move to `std::future` diff --git a/tower-balance/Cargo.toml b/tower-balance/Cargo.toml index 64da90a..e288896 100644 --- a/tower-balance/Cargo.toml +++ b/tower-balance/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-balance" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -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-balance/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-balance/0.3.0-alpha.2" description = """ Balance load across a set of uniform services. """ @@ -26,18 +26,18 @@ log = ["tracing/log"] default = ["log"] [dependencies] -futures-util-preview = "=0.3.0-alpha.18" -futures-core-preview = "=0.3.0-alpha.18" +futures-util-preview = "=0.3.0-alpha.19" +futures-core-preview = "=0.3.0-alpha.19" pin-project = "0.4" indexmap = "1.0.2" tracing = "0.1" rand = "0.6.5" -tokio-sync = "=0.2.0-alpha.5" -tokio-timer = "=0.3.0-alpha.5" -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" +tokio-sync = "=0.2.0-alpha.6" +tokio-timer = "=0.3.0-alpha.6" +tower-discover = { version = "=0.3.0-alpha.2", path = "../tower-discover" } +tower-layer = { version = "=0.3.0-alpha.2", path = "../tower-layer" } +tower-load = { version = "=0.3.0-alpha.2", path = "../tower-load" } +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } tower-make = { version = "=0.3.0-alpha.2", path = "../tower-make" } slab = "0.4" @@ -45,10 +45,10 @@ slab = "0.4" tracing-subscriber = "0.1.1" hdrhistogram = "6.0" quickcheck = { version = "0.6", default-features = false } -tokio = "=0.2.0-alpha.5" -tokio-executor = "=0.2.0-alpha.5" -tokio-test = "=0.2.0-alpha.5" -tower-buffer = { version = "=0.3.0-alpha.1b", path = "../tower-buffer" } -tower-limit = { version = "=0.3.0-alpha.1", path = "../tower-limit" } -tower-test = { version = "=0.3.0-alpha.1", path = "../tower-test" } -tower = { version = "=0.3.0-alpha.1a", path = "../tower" } +tokio = "=0.2.0-alpha.6" +tokio-executor = "=0.2.0-alpha.6" +tokio-test = "=0.2.0-alpha.6" +tower-buffer = { version = "=0.3.0-alpha.2", path = "../tower-buffer" } +tower-limit = { version = "=0.3.0-alpha.2", path = "../tower-limit" } +tower-test = { version = "=0.3.0-alpha.2", path = "../tower-test" } +tower = { version = "=0.3.0-alpha.2", path = "../tower" } diff --git a/tower-balance/src/lib.rs b/tower-balance/src/lib.rs index 33e3e12..7981753 100644 --- a/tower-balance/src/lib.rs +++ b/tower-balance/src/lib.rs @@ -1,6 +1,6 @@ //! Load balancing middlewares. -#![doc(html_root_url = "https://docs.rs/tower-balance/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-balance/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-buffer/CHANGELOG.md b/tower-buffer/CHANGELOG.md index 2010ed4..6476fde 100644 --- a/tower-buffer/CHANGELOG.md +++ b/tower-buffer/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1b (September 13, 2019) - Remove `Stream` unused warning. diff --git a/tower-buffer/Cargo.toml b/tower-buffer/Cargo.toml index 6d10da3..47b3b45 100644 --- a/tower-buffer/Cargo.toml +++ b/tower-buffer/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-buffer" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.3.0-alpha.1b" +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-buffer/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-buffer/0.3.0-alpha.2" description = """ Buffer requests before dispatching to a `Service`. """ @@ -26,15 +26,15 @@ log = ["tracing/log"] default = ["log"] [dependencies] -futures-core-preview = "=0.3.0-alpha.18" +futures-core-preview = "=0.3.0-alpha.19" pin-project = "0.4" -tower-service = "=0.3.0-alpha.1" -tower-layer = { version = "=0.3.0-alpha.1", path = "../tower-layer" } -tokio-executor = "=0.2.0-alpha.5" -tokio-sync = "=0.2.0-alpha.5" +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } +tower-layer = { version = "=0.3.0-alpha.2", path = "../tower-layer" } +tokio-executor = "=0.2.0-alpha.6" +tokio-sync = "=0.2.0-alpha.6" tracing = "0.1.2" [dev-dependencies] -tower-test = { version = "=0.3.0-alpha.1", path = "../tower-test" } -tokio-test = { version = "=0.2.0-alpha.5" } -futures-util-preview = "=0.3.0-alpha.18" +tower-test = { version = "=0.3.0-alpha.2", path = "../tower-test" } +tokio-test = { version = "=0.2.0-alpha.6" } +futures-util-preview = "=0.3.0-alpha.19" diff --git a/tower-buffer/src/lib.rs b/tower-buffer/src/lib.rs index 6280be2..c650c3a 100644 --- a/tower-buffer/src/lib.rs +++ b/tower-buffer/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-buffer/0.3.0-alpha.1a")] +#![doc(html_root_url = "https://docs.rs/tower-buffer/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-discover/CHANGELOG.md b/tower-discover/CHANGELOG.md index e5036bf..633a866 100644 --- a/tower-discover/CHANGELOG.md +++ b/tower-discover/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 (September 11, 2019) - Move to `std::future` diff --git a/tower-discover/Cargo.toml b/tower-discover/Cargo.toml index 636e7a2..5a7d261 100644 --- a/tower-discover/Cargo.toml +++ b/tower-discover/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-discover" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -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-discover/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-discover/0.3.0-alpha.2" description = """ Abstracts over service discovery strategies. """ @@ -22,6 +22,6 @@ categories = ["asynchronous", "network-programming"] edition = "2018" [dependencies] -futures-core-preview = "=0.3.0-alpha.18" -tower-service = "=0.3.0-alpha.1" +futures-core-preview = "=0.3.0-alpha.19" +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } pin-project = "0.4" diff --git a/tower-discover/src/lib.rs b/tower-discover/src/lib.rs index d627ce0..fb59a3d 100644 --- a/tower-discover/src/lib.rs +++ b/tower-discover/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-discover/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-discover/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-filter/CHANGELOG.md b/tower-filter/CHANGELOG.md index 483fd9e..4eb60cc 100644 --- a/tower-filter/CHANGELOG.md +++ b/tower-filter/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 - Move to `std::future` diff --git a/tower-filter/Cargo.toml b/tower-filter/Cargo.toml index 574de61..516d47b 100644 --- a/tower-filter/Cargo.toml +++ b/tower-filter/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-filter" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -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-filter/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-filter/0.3.0-alpha.2" description = """ Conditionally allow requests to be dispatched to a service based on the result of a predicate. @@ -24,13 +24,13 @@ edition = "2018" publish = false [dependencies] -tower-service = "=0.3.0-alpha.1" -tower-layer = { version = "=0.3.0-alpha.1", path = "../tower-layer" } +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } +tower-layer = { version = "=0.3.0-alpha.2", path = "../tower-layer" } pin-project = "0.4" -futures-core-preview = "=0.3.0-alpha.18" +futures-core-preview = "=0.3.0-alpha.19" [dev-dependencies] -tower-test = { version = "=0.3.0-alpha.1", path = "../tower-test" } -tokio-test = "=0.2.0-alpha.5" -tokio = "=0.2.0-alpha.5" -futures-util-preview = "=0.3.0-alpha.18" +tower-test = { version = "=0.3.0-alpha.2", path = "../tower-test" } +tokio-test = "=0.2.0-alpha.6" +tokio = "=0.2.0-alpha.6" +futures-util-preview = "=0.3.0-alpha.19" diff --git a/tower-filter/src/lib.rs b/tower-filter/src/lib.rs index 9c6af92..bffd21a 100644 --- a/tower-filter/src/lib.rs +++ b/tower-filter/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-filter/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-filter/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-hedge/Cargo.toml b/tower-hedge/Cargo.toml index e61af46..0df8099 100644 --- a/tower-hedge/Cargo.toml +++ b/tower-hedge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tower-hedge" -version = "0.3.0-alpha.1" +version = "0.3.0-alpha.2" authors = ["Alex Leong "] edition = "2018" publish = false @@ -8,13 +8,13 @@ publish = false [dependencies] hdrhistogram = "6.0" log = "0.4.1" -tower-service = "0.3.0-alpha.1" -tower-filter = { version = "0.3.0-alpha.1", path = "../tower-filter" } +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } +tower-filter = { version = "0.3.0-alpha.2", path = "../tower-filter" } tokio-timer = "0.3.0-alpha.4" -futures-util-preview = "0.3.0-alpha.18" +futures-util-preview = "0.3.0-alpha.19" pin-project = "0.4" [dev-dependencies] -tower-test = { version = "0.3.0-alpha.1", path = "../tower-test" } +tower-test = { version = "0.3.0-alpha.2", path = "../tower-test" } tokio-test = "0.2.0-alpha.4" tokio-executor = "0.2.0-alpha.4" diff --git a/tower-layer/CHANGELOG.md b/tower-layer/CHANGELOG.md index e5036bf..633a866 100644 --- a/tower-layer/CHANGELOG.md +++ b/tower-layer/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 (September 11, 2019) - Move to `std::future` diff --git a/tower-layer/Cargo.toml b/tower-layer/Cargo.toml index b2af413..d7248b1 100644 --- a/tower-layer/Cargo.toml +++ b/tower-layer/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-layer" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -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-layer/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-layer/0.3.0-alpha.2" description = """ Decorates a `Service` to allow easy composition between `Service`s. """ @@ -24,4 +24,4 @@ edition = "2018" [dependencies] [dev-dependencies] -tower-service = "=0.3.0-alpha.1" +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } diff --git a/tower-layer/src/lib.rs b/tower-layer/src/lib.rs index cf728ce..1f532e8 100644 --- a/tower-layer/src/lib.rs +++ b/tower-layer/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-layer/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-layer/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-limit/CHANGELOG.md b/tower-limit/CHANGELOG.md index e5036bf..633a866 100644 --- a/tower-limit/CHANGELOG.md +++ b/tower-limit/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 (September 11, 2019) - Move to `std::future` diff --git a/tower-limit/Cargo.toml b/tower-limit/Cargo.toml index 6442bb7..0bf6bdd 100644 --- a/tower-limit/Cargo.toml +++ b/tower-limit/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-limit" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -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-limit/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-limit/0.3.0-alpha.2" description = """ Limit maximum request rate to a `Service`. """ @@ -22,14 +22,14 @@ categories = ["asynchronous", "network-programming"] edition = "2018" [dependencies] -futures-core-preview = "=0.3.0-alpha.18" -tower-service = "=0.3.0-alpha.1" -tower-layer = { version = "=0.3.0-alpha.1", path = "../tower-layer" } -tokio-sync = "=0.2.0-alpha.5" -tokio-timer = "=0.3.0-alpha.5" +futures-core-preview = "=0.3.0-alpha.19" +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } +tower-layer = { version = "=0.3.0-alpha.2", path = "../tower-layer" } +tokio-sync = "=0.2.0-alpha.6" +tokio-timer = "=0.3.0-alpha.6" pin-project = "0.4" [dev-dependencies] -tower-test = { version = "=0.3.0-alpha.1", path = "../tower-test" } -tokio-test = "=0.2.0-alpha.5" -futures-util-preview = "=0.3.0-alpha.18" +tower-test = { version = "=0.3.0-alpha.2", path = "../tower-test" } +tokio-test = "=0.2.0-alpha.6" +futures-util-preview = "=0.3.0-alpha.19" diff --git a/tower-limit/src/lib.rs b/tower-limit/src/lib.rs index 7284fb3..cbcabb3 100644 --- a/tower-limit/src/lib.rs +++ b/tower-limit/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-limit/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-limit/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-load-shed/CHANGELOG.md b/tower-load-shed/CHANGELOG.md index e5036bf..633a866 100644 --- a/tower-load-shed/CHANGELOG.md +++ b/tower-load-shed/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 (September 11, 2019) - Move to `std::future` diff --git a/tower-load-shed/Cargo.toml b/tower-load-shed/Cargo.toml index 9e94c05..bed4d71 100644 --- a/tower-load-shed/Cargo.toml +++ b/tower-load-shed/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-load-shed" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -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-load-shed/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-load-shed/0.3.0-alpha.2" description = """ Immediately reject requests if the inner service is not ready. This is also known as load-shedding. @@ -23,12 +23,12 @@ categories = ["asynchronous", "network-programming"] edition = "2018" [dependencies] -tower-service = "=0.3.0-alpha.1" -tower-layer = { version = "=0.3.0-alpha.1", path = "../tower-layer" } +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } +tower-layer = { version = "=0.3.0-alpha.2", path = "../tower-layer" } pin-project = "0.4" -futures-core-preview = "=0.3.0-alpha.18" +futures-core-preview = "=0.3.0-alpha.19" [dev-dependencies] -tokio-test = "=0.2.0-alpha.5" -tower-test = { version = "=0.3.0-alpha.1", path = "../tower-test" } -futures-util-preview = "=0.3.0-alpha.18" +tokio-test = "=0.2.0-alpha.6" +tower-test = { version = "=0.3.0-alpha.2", path = "../tower-test" } +futures-util-preview = "=0.3.0-alpha.19" diff --git a/tower-load-shed/src/lib.rs b/tower-load-shed/src/lib.rs index 457b600..c5559b1 100644 --- a/tower-load-shed/src/lib.rs +++ b/tower-load-shed/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-load-shed/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-load-shed/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-load/CHANGELOG.md b/tower-load/CHANGELOG.md index c3e80f4..19df3db 100644 --- a/tower-load/CHANGELOG.md +++ b/tower-load/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 (September 11, 2019) - Move to `std::future` diff --git a/tower-load/Cargo.toml b/tower-load/Cargo.toml index 164ad5e..f4961b8 100644 --- a/tower-load/Cargo.toml +++ b/tower-load/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-load" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -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-load/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-load/0.3.0-alpha.2" description = """ Strategies for measuring the load of a service """ @@ -22,13 +22,13 @@ categories = ["asynchronous", "network-programming"] edition = "2018" [dependencies] -futures-core-preview = "=0.3.0-alpha.18" +futures-core-preview = "=0.3.0-alpha.19" log = "0.4.1" -tokio-timer = "=0.3.0-alpha.5" -tower-service = "=0.3.0-alpha.1" -tower-discover = { version = "=0.3.0-alpha.1", path = "../tower-discover" } +tokio-timer = "=0.3.0-alpha.6" +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } +tower-discover = { version = "=0.3.0-alpha.2", path = "../tower-discover" } pin-project = "0.4" [dev-dependencies] -tokio-test = "=0.2.0-alpha.5" -futures-util-preview = "=0.3.0-alpha.18" +tokio-test = "=0.2.0-alpha.6" +futures-util-preview = "=0.3.0-alpha.19" diff --git a/tower-load/src/lib.rs b/tower-load/src/lib.rs index bc06c2b..55a1cce 100644 --- a/tower-load/src/lib.rs +++ b/tower-load/src/lib.rs @@ -1,6 +1,6 @@ //! Abstractions and utilties for measuring a service's load. -#![doc(html_root_url = "https://docs.rs/tower-load/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-load/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-make/Cargo.toml b/tower-make/Cargo.toml index 3ef98e3..94434e7 100644 --- a/tower-make/Cargo.toml +++ b/tower-make/Cargo.toml @@ -19,5 +19,5 @@ io = ["tokio-io"] [dependencies] # we don't use any of the possibly unstable io bits, so we can be loose # about the exact alpha version -tokio-io = { version = "0.2.0-alpha.5", optional = true } -tower-service = "=0.3.0-alpha.1" +tokio-io = { version = "0.2.0-alpha.6", optional = true } +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } diff --git a/tower-reconnect/CHANGELOG.md b/tower-reconnect/CHANGELOG.md index c3e80f4..19df3db 100644 --- a/tower-reconnect/CHANGELOG.md +++ b/tower-reconnect/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 (September 11, 2019) - Move to `std::future` diff --git a/tower-reconnect/Cargo.toml b/tower-reconnect/Cargo.toml index 32cb66d..9953e3c 100644 --- a/tower-reconnect/Cargo.toml +++ b/tower-reconnect/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-reconnect" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -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-reconnect/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-reconnect/0.3.0-alpha.2" description = """ Automatically recreate a new `Service` instance when an error is encountered. """ @@ -23,6 +23,6 @@ edition = "2018" [dependencies] log = "0.4.1" -tower-service = "=0.3.0-alpha.1" +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } tower-make = { version = "=0.3.0-alpha.2", path = "../tower-make" } pin-project = "0.4" diff --git a/tower-reconnect/src/lib.rs b/tower-reconnect/src/lib.rs index f726d6d..3cea6d1 100644 --- a/tower-reconnect/src/lib.rs +++ b/tower-reconnect/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-reconnect/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-reconnect/0.3.0-alpha.2")] #![warn(missing_debug_implementations, rust_2018_idioms, unreachable_pub)] #![allow(missing_docs)] // TODO #![allow(elided_lifetimes_in_paths)] diff --git a/tower-retry/CHANGELOG.md b/tower-retry/CHANGELOG.md index e5036bf..633a866 100644 --- a/tower-retry/CHANGELOG.md +++ b/tower-retry/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 (September 11, 2019) - Move to `std::future` diff --git a/tower-retry/Cargo.toml b/tower-retry/Cargo.toml index b2fb339..c204fd8 100644 --- a/tower-retry/Cargo.toml +++ b/tower-retry/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-retry" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -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-retry/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-retry/0.3.0-alpha.2" description = """ Retry failed requests. """ @@ -22,13 +22,13 @@ categories = ["asynchronous", "network-programming"] edition = "2018" [dependencies] -tower-service = "=0.3.0-alpha.1" -tower-layer = { version = "=0.3.0-alpha.1", path = "../tower-layer" } -tokio-timer = "=0.3.0-alpha.5" +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } +tower-layer = { version = "=0.3.0-alpha.2", path = "../tower-layer" } +tokio-timer = "=0.3.0-alpha.6" pin-project = "0.4" -futures-core-preview = "=0.3.0-alpha.18" +futures-core-preview = "=0.3.0-alpha.19" [dev-dependencies] -tower-test = { version = "=0.3.0-alpha.1", path = "../tower-test" } -tokio-test = "=0.2.0-alpha.5" -futures-util-preview = "=0.3.0-alpha.18" +tower-test = { version = "=0.3.0-alpha.2", path = "../tower-test" } +tokio-test = "=0.2.0-alpha.6" +futures-util-preview = "=0.3.0-alpha.19" diff --git a/tower-retry/src/lib.rs b/tower-retry/src/lib.rs index 80876ac..4f29a3d 100644 --- a/tower-retry/src/lib.rs +++ b/tower-retry/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-retry/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-retry/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-service/CHANGELOG.md b/tower-service/CHANGELOG.md index f859768..cbc336d 100644 --- a/tower-service/CHANGELOG.md +++ b/tower-service/CHANGELOG.md @@ -1,4 +1,8 @@ -# 0.3.0 (Aug 20, 2019) +# 0.3.0-alpha.2 (September 30, 2019) + +- Documentation fixes. + +# 0.3.0-alpha.1 (Aug 20, 2019) * Switch to `std::future::Future` diff --git a/tower-service/Cargo.toml b/tower-service/Cargo.toml index e026e0f..7c84a52 100644 --- a/tower-service/Cargo.toml +++ b/tower-service/Cargo.toml @@ -9,13 +9,13 @@ name = "tower-service" # - README.md # - Update CHANGELOG.md. # - Create "v0.2.x" git tag. -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-service/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-service/0.3.0-alpha.2" description = """ Trait representing an asynchronous, request / response based, client or server. """ diff --git a/tower-service/src/lib.rs b/tower-service/src/lib.rs index bc6dc25..10eb859 100644 --- a/tower-service/src/lib.rs +++ b/tower-service/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-service/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-service/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-spawn-ready/CHANGELOG.md b/tower-spawn-ready/CHANGELOG.md index 9f81cee..645b0b4 100644 --- a/tower-spawn-ready/CHANGELOG.md +++ b/tower-spawn-ready/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 (September 11, 2019) - Move to `std::future` diff --git a/tower-spawn-ready/Cargo.toml b/tower-spawn-ready/Cargo.toml index 17c2b71..3fc94fa 100644 --- a/tower-spawn-ready/Cargo.toml +++ b/tower-spawn-ready/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-spawn-ready" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -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-spawn-ready/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-spawn-ready/0.3.0-alpha.2" description = """ Drives service readiness via a spawned task """ @@ -22,14 +22,14 @@ categories = ["asynchronous", "network-programming"] edition = "2018" [dependencies] -futures-core-preview = "=0.3.0-alpha.18" -futures-util-preview = "=0.3.0-alpha.18" +futures-core-preview = "=0.3.0-alpha.19" +futures-util-preview = "=0.3.0-alpha.19" pin-project = "0.4" -tower-service = "=0.3.0-alpha.1" -tower-layer = { version = "=0.3.0-alpha.1", path = "../tower-layer" } -tokio-executor = "=0.2.0-alpha.5" -tokio-sync = "=0.2.0-alpha.5" +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } +tower-layer = { version = "=0.3.0-alpha.2", path = "../tower-layer" } +tokio-executor = "=0.2.0-alpha.6" +tokio-sync = "=0.2.0-alpha.6" [dev-dependencies] -tower-test = { version = "=0.3.0-alpha.1", path = "../tower-test" } -tokio-test = "=0.2.0-alpha.5" +tower-test = { version = "=0.3.0-alpha.2", path = "../tower-test" } +tokio-test = "=0.2.0-alpha.6" diff --git a/tower-spawn-ready/src/lib.rs b/tower-spawn-ready/src/lib.rs index 8a2180f..43ecb15 100644 --- a/tower-spawn-ready/src/lib.rs +++ b/tower-spawn-ready/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-spawn-ready/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-spawn-ready/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-test/CHANGELOG.md b/tower-test/CHANGELOG.md index e5036bf..633a866 100644 --- a/tower-test/CHANGELOG.md +++ b/tower-test/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 (September 11, 2019) - Move to `std::future` diff --git a/tower-test/Cargo.toml b/tower-test/Cargo.toml index ae340e6..e975fe9 100644 --- a/tower-test/Cargo.toml +++ b/tower-test/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-test" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -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-test/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-test/0.3.0-alpha.2" description = """ Utilities for writing client and server `Service` tests. """ @@ -22,9 +22,9 @@ categories = ["asynchronous", "network-programming"] edition = "2018" [dependencies] -futures-util-preview = "=0.3.0-alpha.18" -futures-executor-preview = "=0.3.0-alpha.18" -tokio-test = "=0.2.0-alpha.5" -tokio-sync = "=0.2.0-alpha.5" -tower-service = "=0.3.0-alpha.1" +futures-util-preview = "=0.3.0-alpha.19" +futures-executor-preview = "=0.3.0-alpha.19" +tokio-test = "=0.2.0-alpha.6" +tokio-sync = "=0.2.0-alpha.6" +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } pin-project = "0.4" diff --git a/tower-test/src/lib.rs b/tower-test/src/lib.rs index a6259b3..08931ad 100644 --- a/tower-test/src/lib.rs +++ b/tower-test/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-test/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-test/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-timeout/CHANGELOG.md b/tower-timeout/CHANGELOG.md index c276211..1605716 100644 --- a/tower-timeout/CHANGELOG.md +++ b/tower-timeout/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 (September 11, 2019) - Move to `std::future` diff --git a/tower-timeout/Cargo.toml b/tower-timeout/Cargo.toml index 4e768e9..da81afa 100644 --- a/tower-timeout/Cargo.toml +++ b/tower-timeout/Cargo.toml @@ -8,13 +8,13 @@ name = "tower-timeout" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -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-timeout/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-timeout/0.3.0-alpha.2" description = """ Apply a timeout to requests, ensuring completion within a fixed time duration. """ @@ -22,7 +22,7 @@ categories = ["asynchronous", "network-programming"] edition = "2018" [dependencies] -tower-service = "=0.3.0-alpha.1" -tower-layer = { version = "=0.3.0-alpha.1", path = "../tower-layer" } -tokio-timer = "=0.3.0-alpha.5" +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } +tower-layer = { version = "=0.3.0-alpha.2", path = "../tower-layer" } +tokio-timer = "=0.3.0-alpha.6" pin-project = "0.4" diff --git a/tower-timeout/src/lib.rs b/tower-timeout/src/lib.rs index e9f9405..cef234d 100644 --- a/tower-timeout/src/lib.rs +++ b/tower-timeout/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-timeout/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-timeout/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower-util/CHANGELOG.md b/tower-util/CHANGELOG.md index e5036bf..633a866 100644 --- a/tower-util/CHANGELOG.md +++ b/tower-util/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1 (September 11, 2019) - Move to `std::future` diff --git a/tower-util/Cargo.toml b/tower-util/Cargo.toml index ea9f4b4..901fba8 100644 --- a/tower-util/Cargo.toml +++ b/tower-util/Cargo.toml @@ -9,13 +9,13 @@ name = "tower-util" # - README.md # - Update CHANGELOG.md. # - Create "v0.3.x" git tag. -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-util/0.3.0-alpha.1" +documentation = "https://docs.rs/tower-util/0.3.0-alpha.2" description = """ Utilities for working with `Service`. """ @@ -23,15 +23,15 @@ categories = ["asynchronous", "network-programming"] edition = "2018" [dependencies] -tower-service = "=0.3.0-alpha.1" -tower-layer = { version = "=0.3.0-alpha.1", path = "../tower-layer" } +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } +tower-layer = { version = "=0.3.0-alpha.2", path = "../tower-layer" } pin-project = "0.4" -futures-util-preview = "=0.3.0-alpha.18" -futures-core-preview = "=0.3.0-alpha.18" +futures-util-preview = "=0.3.0-alpha.19" +futures-core-preview = "=0.3.0-alpha.19" [dev-dependencies] -futures-util-preview = "=0.3.0-alpha.18" -tokio-test = "=0.2.0-alpha.5" -tokio = "=0.2.0-alpha.5" -tower = { version = "=0.3.0-alpha.1a", path = "../tower" } -tower-test = { version = "=0.3.0-alpha.1", path = "../tower-test" } +futures-util-preview = "=0.3.0-alpha.19" +tokio-test = "=0.2.0-alpha.6" +tokio = "=0.2.0-alpha.6" +tower = { version = "=0.3.0-alpha.2", path = "../tower" } +tower-test = { version = "=0.3.0-alpha.2", path = "../tower-test" } diff --git a/tower-util/src/lib.rs b/tower-util/src/lib.rs index 3917a50..a1ef0f5 100644 --- a/tower-util/src/lib.rs +++ b/tower-util/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-util/0.3.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tower-util/0.3.0-alpha.2")] #![warn( missing_debug_implementations, missing_docs, diff --git a/tower/CHANGELOG.md b/tower/CHANGELOG.md index fb15290..5f729b7 100644 --- a/tower/CHANGELOG.md +++ b/tower/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0-alpha.2 (September 30, 2019) + +- Move to `futures-*-preview 0.3.0-alpha.19` +- Move to `pin-project 0.4` + # 0.3.0-alpha.1a (September 13, 2019) - Update `tower-buffer` to `0.3.0-alpha.1b` diff --git a/tower/Cargo.toml b/tower/Cargo.toml index 39191d0..6016868 100644 --- a/tower/Cargo.toml +++ b/tower/Cargo.toml @@ -8,13 +8,13 @@ name = "tower" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.3.0-alpha.1a" +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/0.3.0-alpha.1" +documentation = "https://docs.rs/tower/0.3.0-alpha.2" description = """ Tower is a library of modular and reusable components for building robust clients and servers. @@ -28,20 +28,20 @@ default = ["full"] full = [] [dependencies] -tower-buffer = { version = "=0.3.0-alpha.1b", path = "../tower-buffer" } -tower-discover = { version = "=0.3.0-alpha.1", path = "../tower-discover" } -tower-layer = { version = "=0.3.0-alpha.1", path = "../tower-layer" } -tower-limit = { version = "=0.3.0-alpha.1", path = "../tower-limit" } -tower-load-shed = { version = "=0.3.0-alpha.1", path = "../tower-load-shed" } -tower-retry = { version = "=0.3.0-alpha.1", path = "../tower-retry" } -tower-service = "=0.3.0-alpha.1" -tower-timeout = { version = "=0.3.0-alpha.1", path = "../tower-timeout" } -tower-util = { version = "=0.3.0-alpha.1", path = "../tower-util" } -futures-core-preview = "=0.3.0-alpha.18" +tower-buffer = { version = "=0.3.0-alpha.2", path = "../tower-buffer" } +tower-discover = { version = "=0.3.0-alpha.2", path = "../tower-discover" } +tower-layer = { version = "=0.3.0-alpha.2", path = "../tower-layer" } +tower-limit = { version = "=0.3.0-alpha.2", path = "../tower-limit" } +tower-load-shed = { version = "=0.3.0-alpha.2", path = "../tower-load-shed" } +tower-retry = { version = "=0.3.0-alpha.2", path = "../tower-retry" } +tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } +tower-timeout = { version = "=0.3.0-alpha.2", path = "../tower-timeout" } +tower-util = { version = "=0.3.0-alpha.2", path = "../tower-util" } +futures-core-preview = "=0.3.0-alpha.19" [dev-dependencies] env_logger = { version = "0.5.3", default-features = false } -futures-util-preview = "=0.3.0-alpha.18" +futures-util-preview = "=0.3.0-alpha.19" log = "0.4.1" -tokio = "=0.2.0-alpha.5" -tower-test = { version = "=0.3.0-alpha.1", path = "../tower-test" } +tokio = "=0.2.0-alpha.6" +tower-test = { version = "=0.3.0-alpha.2", path = "../tower-test" } diff --git a/tower/src/lib.rs b/tower/src/lib.rs index 6c5066e..8bcd89e 100644 --- a/tower/src/lib.rs +++ b/tower/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower/0.3.0-alpha.1a")] +#![doc(html_root_url = "https://docs.rs/tower/0.3.0-alpha.2")] // Allows refining features in the future without breaking backwards // compatibility #![cfg(feature = "full")]