Skip to content

Commit 6a5ea03

Browse files
authored
prepare router release 0.3.0 (#362)
1 parent 23b1f63 commit 6a5ea03

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

actix-router/CHANGES.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# Changes
22

33
## Unreleased - 2021-xx-xx
4-
* `Path::add` and `add_static` takes `impl Into<Cow<'static, str>>` [#345]
5-
* When matching URL parameters, `%25` is kept in the percent-encoded form - no longer decoded to `%`. [#357]
6-
* Fixed a bug where the `Path` extractor returns unsafe malformed string due to malformed URL. [#359]
7-
* Path tail patterns now match `'\n'` in request URL. [#360]
4+
5+
6+
## 0.3.0 - 2021-06-06
7+
* When matching path parameters, `%25` is now kept in the percent-encoded form; no longer decoded to `%`. [#357]
8+
* Path tail patterns now match new lines (`\n`) in request URL. [#360]
9+
* Fixed a safety bug where `Path` could return a malformed string after percent decoding. [#359]
10+
* Methods `Path::{add, add_static}` now take `impl Into<Cow<'static, str>>`. [#345]
811

912
[#345]: https://github.com/actix/actix-net/pull/345
1013
[#357]: https://github.com/actix/actix-net/pull/357

actix-router/Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
[package]
22
name = "actix-router"
3-
version = "0.2.7"
3+
version = "0.3.0"
44
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
55
description = "Resource path matching library"
66
keywords = ["actix", "router", "routing"]
7-
homepage = "https://actix.rs"
8-
repository = "https://github.com/actix/actix-net.git"
9-
documentation = "https://docs.rs/actix-router"
7+
repository = "https://github.com/actix/actix-net"
108
license = "MIT OR Apache-2.0"
119
edition = "2018"
1210

0 commit comments

Comments
 (0)