diff --git a/Cargo.toml b/Cargo.toml index 83d64f8f1..74aa284e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ actix-macros = "0.1.0" actix-threadpool = "0.3.1" actix-tls = "2.0.0-alpha.1" -actix-web-codegen = "0.2.0" +actix-web-codegen = "0.2.2" actix-http = "2.0.0-alpha.4" awc = { version = "2.0.0-alpha.2", default-features = false } diff --git a/actix-web-codegen/CHANGES.md b/actix-web-codegen/CHANGES.md index da2faee38..b2e80591f 100644 --- a/actix-web-codegen/CHANGES.md +++ b/actix-web-codegen/CHANGES.md @@ -1,8 +1,10 @@ # Changes -## [Unreleased] - 2020-xx-xx +## [0.2.2] - 2020-05-23 -* Bump minimum supported Rust version to 1.40 +* Add resource middleware on actix-web-codegen [#1467] + +[#1467]: https://github.com/actix/actix-web/pull/1467 ## [0.2.1] - 2020-02-25 diff --git a/actix-web-codegen/Cargo.toml b/actix-web-codegen/Cargo.toml index d57022d4d..3b2cdad3b 100644 --- a/actix-web-codegen/Cargo.toml +++ b/actix-web-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web-codegen" -version = "0.2.1" +version = "0.2.2" description = "Actix web proc macros" readme = "README.md" authors = ["Nikolay Kim "] @@ -12,9 +12,9 @@ workspace = ".." proc-macro = true [dependencies] -quote = "^1" -syn = { version = "^1", features = ["full", "parsing"] } -proc-macro2 = "^1" +quote = "1" +syn = { version = "1", features = ["full", "parsing"] } +proc-macro2 = "1" [dev-dependencies] actix-rt = "1.0.0"