diff --git a/CHANGELOG.md b/CHANGELOG.md index b559748e..ecced0ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # [unreleased] +# 0.11.2 + +Improvements: + +* Update ruma-api-macros to 0.8.2 + # 0.11.1 Improvements: diff --git a/Cargo.toml b/Cargo.toml index 9b290a7b..6c39191b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "ruma-api" readme = "README.md" repository = "https://github.com/ruma/ruma-api" -version = "0.11.1" +version = "0.11.2" edition = "2018" [dependencies] diff --git a/ruma-api-macros/CHANGELOG.md b/ruma-api-macros/CHANGELOG.md index 36a509d8..67e46644 100644 --- a/ruma-api-macros/CHANGELOG.md +++ b/ruma-api-macros/CHANGELOG.md @@ -1,11 +1,19 @@ # [unreleased] +# 0.8.2 + +Bug fixes: + +* Fix handling of `request` / `response` blocks containing fields with serde attributes ([#31][]) + +[#31]: https://github.com/ruma/ruma-api/pull/31 + # 0.8.1 Improvements: * Add spans to almost every error that can come up in `ruma_api!` -* Add a new field kind: `#[ruma_api(query_map)]` +* Add a new field kind: `#[ruma_api(query_map)]` ([#30][]) * This allows endpoints that have a dynamic set of query parameters to be implemented * For details see the documentation of `ruma_api!` * Add more sanity checks @@ -14,6 +22,8 @@ Improvements: * No (newtype) body fields in GET endpoints * Lots of refactoring of the internals +[#30]: https://github.com/ruma/ruma-api/pull/30 + # 0.7.1 Bug fixes: diff --git a/ruma-api-macros/Cargo.toml b/ruma-api-macros/Cargo.toml index 400a042e..88b85b2d 100644 --- a/ruma-api-macros/Cargo.toml +++ b/ruma-api-macros/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "ruma-api-macros" readme = "README.md" repository = "https://github.com/ruma/ruma-api" -version = "0.8.1" +version = "0.8.2" edition = "2018" [dependencies]