From 3aa037d07d583e83efec1aa2e170d2e63c4eb9e2 Mon Sep 17 00:00:00 2001 From: Ali MJ Al-Nasrawy Date: Sat, 5 Jun 2021 21:24:30 +0300 Subject: [PATCH] fix changelog (#361) --- actix-router/CHANGES.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/actix-router/CHANGES.md b/actix-router/CHANGES.md index 8ed43b88..fd54ee7e 100644 --- a/actix-router/CHANGES.md +++ b/actix-router/CHANGES.md @@ -1,19 +1,20 @@ # Changes ## Unreleased - 2021-xx-xx +* `Path::add` and `add_static` takes `impl Into>` [#345] * When matching URL parameters, `%25` is kept in the percent-encoded form - no longer decoded to `%`. [#357] * Fixed a bug where the `Path` extractor returns unsafe malformed string due to malformed URL. [#359] +[#345]: https://github.com/actix/actix-net/pull/345 [#357]: https://github.com/actix/actix-net/pull/357 [#359]: https://github.com/actix/actix-net/pull/359 ## 0.2.7 - 2021-02-06 * Add `Router::recognize_checked` [#247] -* `Path::add` and `add_static` takes `impl Into>` [#345] [#247]: https://github.com/actix/actix-net/pull/247 -[#345]: https://github.com/actix/actix-net/pull/345 + ## 0.2.6 - 2021-01-09 * Use `bytestring` version range compatible with Bytes v1.0. [#246]