From 61acd4cb1ceb97f4a00033d52f0313ea2bf18260 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Thu, 23 Jun 2022 14:51:37 +0100 Subject: [PATCH] Update CHANGES.md --- actix-web/CHANGES.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/actix-web/CHANGES.md b/actix-web/CHANGES.md index a5caad564..b478334ec 100644 --- a/actix-web/CHANGES.md +++ b/actix-web/CHANGES.md @@ -1,12 +1,15 @@ # Changelog ## Unreleased - 2022-xx-xx -- Minimum supported Rust version (MSRV) is now 1.57 due to transitive `time` dependency. ### Added - Add `ErrorHandlers::default_handler` (as well as `default_handler_{server, client}`) to make registering handlers with the `ErrorHandlers` middleware easier. [#2784] +### Changed +- Minimum supported Rust version (MSRV) is now 1.57 due to transitive `time` dependency. + [#2784]: https://github.com/actix/actix-web/pull/2784 + ## 4.1.0 - 2022-06-11 ### Added - Add `ServiceRequest::extract()` to make it easier to use extractors when writing middlewares. [#2647]