summaryrefslogtreecommitdiffstats
path: root/third_party/rust/tower-service/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/tower-service/CHANGELOG.md')
-rw-r--r--third_party/rust/tower-service/CHANGELOG.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/third_party/rust/tower-service/CHANGELOG.md b/third_party/rust/tower-service/CHANGELOG.md
new file mode 100644
index 0000000000..19df4f5ccc
--- /dev/null
+++ b/third_party/rust/tower-service/CHANGELOG.md
@@ -0,0 +1,39 @@
+# 0.3.0 (November 29, 2019)
+
+- Update to `futures 0.3`.
+- Update documentation for `std::future::Future`.
+
+# 0.3.0-alpha.2 (September 30, 2019)
+
+- Documentation fixes.
+
+# 0.3.0-alpha.1 (Aug 20, 2019)
+
+* Switch to `std::future::Future`
+
+# 0.2.0 (Dec 12, 2018)
+
+* Change `Service`'s `Request` associated type to be a generic instead.
+ * Before:
+
+ ```rust
+ impl Service for Client {
+ type Request = HttpRequest;
+ type Response = HttpResponse;
+ // ...
+ }
+ ```
+ * After:
+
+ ```rust
+ impl Service<HttpRequest> for Client {
+ type Response = HttpResponse;
+ // ...
+ }
+ ```
+* Remove `NewService`, use `tower_util::MakeService` instead.
+* Remove `Service::ready` and `Ready`, use `tower_util::ServiceExt` instead.
+
+# 0.1.0 (Aug 9, 2018)
+
+* Initial release