diff --git a/actix-router/CHANGES.md b/actix-router/CHANGES.md index f8b63b6d..d3f15405 100644 --- a/actix-router/CHANGES.md +++ b/actix-router/CHANGES.md @@ -3,7 +3,7 @@ ## Unreleased - 2021-xx-xx -## 0.3.0 - 2021-06-06 +## 0.4.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] @@ -14,6 +14,9 @@ [#359]: https://github.com/actix/actix-net/pull/359 [#360]: https://github.com/actix/actix-net/pull/360 +## 0.3.0 - 2019-12-31 +* Version was yanked previously. See https://crates.io/crates/actix-router/0.3.0 + ## 0.2.7 - 2021-02-06 * Add `Router::recognize_checked` [#247] diff --git a/actix-router/Cargo.toml b/actix-router/Cargo.toml index 12fd6fbe..5f0c22e2 100644 --- a/actix-router/Cargo.toml +++ b/actix-router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-router" -version = "0.3.0" +version = "0.4.0" authors = ["Nikolay Kim "] description = "Resource path matching library" keywords = ["actix", "router", "routing"]