From 6a5ea0342b111ade5e39e0b90210000f5638df0d Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 6 Jun 2021 18:43:22 +0100 Subject: [PATCH] prepare router release 0.3.0 (#362) --- actix-router/CHANGES.md | 11 +++++++---- actix-router/Cargo.toml | 6 ++---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/actix-router/CHANGES.md b/actix-router/CHANGES.md index 38fc119b..f8b63b6d 100644 --- a/actix-router/CHANGES.md +++ b/actix-router/CHANGES.md @@ -1,10 +1,13 @@ # 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] -* Path tail patterns now match `'\n'` in request URL. [#360] + + +## 0.3.0 - 2021-06-06 +* When matching path parameters, `%25` is now kept in the percent-encoded form; no longer decoded to `%`. [#357] +* Path tail patterns now match new lines (`\n`) in request URL. [#360] +* Fixed a safety bug where `Path` could return a malformed string after percent decoding. [#359] +* Methods `Path::{add, add_static}` now take `impl Into>`. [#345] [#345]: https://github.com/actix/actix-net/pull/345 [#357]: https://github.com/actix/actix-net/pull/357 diff --git a/actix-router/Cargo.toml b/actix-router/Cargo.toml index f55c2c38..12fd6fbe 100644 --- a/actix-router/Cargo.toml +++ b/actix-router/Cargo.toml @@ -1,12 +1,10 @@ [package] name = "actix-router" -version = "0.2.7" +version = "0.3.0" authors = ["Nikolay Kim "] description = "Resource path matching library" keywords = ["actix", "router", "routing"] -homepage = "https://actix.rs" -repository = "https://github.com/actix/actix-net.git" -documentation = "https://docs.rs/actix-router" +repository = "https://github.com/actix/actix-net" license = "MIT OR Apache-2.0" edition = "2018"