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<Cow<'static, str>>` [#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<Cow<'static, str>>`. [#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 <fafhrd91@gmail.com>"]
 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"