1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 01:08:10 +00:00

prepare actix-router release 0.5.0-rc.3

This commit is contained in:
Rob Ede 2022-01-31 22:21:30 +00:00
parent 9777653dc0
commit 47f5faf26e
No known key found for this signature in database
GPG key ID: 97C636207D3EF933
4 changed files with 6 additions and 3 deletions

View file

@ -81,7 +81,7 @@ actix-utils = "3.0.0"
actix-tls = { version = "3.0.0", default-features = false, optional = true }
actix-http = { version = "3.0.0-beta.19", features = ["http2", "ws"] }
actix-router = "0.5.0-rc.2"
actix-router = "0.5.0-rc.3"
actix-web-codegen = "0.5.0-rc.1"
ahash = "0.7"

View file

@ -1,6 +1,9 @@
# Changes
## Unreleased - 2021-xx-xx
## 0.5.0-rc.3 - 2022-01-31
- Remove unused `ResourceInfo`. [#2612]
- Add `RouterBuilder::push`. [#2612]
- Change signature of `ResourceDef::capture_match_info_fn` to remove `user_data` parameter. [#2612]

View file

@ -1,6 +1,6 @@
[package]
name = "actix-router"
version = "0.5.0-rc.2"
version = "0.5.0-rc.3"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com>",

View file

@ -15,7 +15,7 @@ edition = "2018"
proc-macro = true
[dependencies]
actix-router = "0.5.0-beta.4"
actix-router = "0.5.0-rc.3"
proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = ["full", "parsing"] }