From dbdbc148eaf1fd37659f2faebf409bcb0b4a8369 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 29 Jul 2020 17:25:32 +0200 Subject: [PATCH] Release ruma-api 0.17.0-alpha.1 --- ruma-api-macros/Cargo.toml | 4 ++-- ruma-api/CHANGELOG.md | 7 +++++++ ruma-api/Cargo.toml | 8 ++++---- ruma-appservice-api/Cargo.toml | 2 +- ruma-client-api/Cargo.toml | 2 +- ruma-federation-api/Cargo.toml | 2 +- ruma/Cargo.toml | 2 +- 7 files changed, 17 insertions(+), 10 deletions(-) diff --git a/ruma-api-macros/Cargo.toml b/ruma-api-macros/Cargo.toml index 0cc553f0..a785e09b 100644 --- a/ruma-api-macros/Cargo.toml +++ b/ruma-api-macros/Cargo.toml @@ -12,11 +12,11 @@ license = "MIT" name = "ruma-api-macros" readme = "README.md" repository = "https://github.com/ruma/ruma" -version = "0.16.1" +version = "0.17.0-alpha.1" edition = "2018" [dependencies] -proc-macro2 = "1.0.18" +proc-macro2 = "1.0.19" quote = "1.0.7" syn = { version = "1.0.31", features = ["full", "extra-traits"] } diff --git a/ruma-api/CHANGELOG.md b/ruma-api/CHANGELOG.md index 3a0e9900..37a820c3 100644 --- a/ruma-api/CHANGELOG.md +++ b/ruma-api/CHANGELOG.md @@ -1,5 +1,12 @@ # [unreleased] +# 0.17.0 + +Breaking changes: + +* Update the syntax of the `ruma_api!` macro. Colons are now required after the keywords `metadata`, + `request` and `response`. + # 0.16.1 Bug fixes: diff --git a/ruma-api/Cargo.toml b/ruma-api/Cargo.toml index 2dff07f1..6db986d6 100644 --- a/ruma-api/Cargo.toml +++ b/ruma-api/Cargo.toml @@ -12,17 +12,17 @@ license = "MIT" name = "ruma-api" readme = "README.md" repository = "https://github.com/ruma/ruma" -version = "0.16.1" +version = "0.17.0-alpha.1" edition = "2018" [dependencies] http = "0.2.1" percent-encoding = "2.1.0" -ruma-api-macros = { version = "=0.16.1", path = "../ruma-api-macros" } +ruma-api-macros = { version = "=0.17.0-alpha.1", path = "../ruma-api-macros" } ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" } ruma-serde = { version = "0.2.3", path = "../ruma-serde" } -serde = { version = "1.0.113", features = ["derive"] } -serde_json = "1.0.55" +serde = { version = "1.0.114", features = ["derive"] } +serde_json = "1.0.57" strum = "0.18.0" [dev-dependencies] diff --git a/ruma-appservice-api/Cargo.toml b/ruma-appservice-api/Cargo.toml index 441a188b..bb751b79 100644 --- a/ruma-appservice-api/Cargo.toml +++ b/ruma-appservice-api/Cargo.toml @@ -12,7 +12,7 @@ version = "0.1.0" edition = "2018" [dependencies] -ruma-api = { version = "0.16.1", path = "../ruma-api" } +ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" } ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" } ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" } diff --git a/ruma-client-api/Cargo.toml b/ruma-client-api/Cargo.toml index c32a149a..117f691b 100644 --- a/ruma-client-api/Cargo.toml +++ b/ruma-client-api/Cargo.toml @@ -19,7 +19,7 @@ edition = "2018" [dependencies] http = "0.2.1" js_int = { version = "0.1.7", features = ["serde"] } -ruma-api = { version = "0.16.1", path = "../ruma-api" } +ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" } ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" } ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" } diff --git a/ruma-federation-api/Cargo.toml b/ruma-federation-api/Cargo.toml index 7f0198c4..3a8e66be 100644 --- a/ruma-federation-api/Cargo.toml +++ b/ruma-federation-api/Cargo.toml @@ -17,7 +17,7 @@ version = "0.0.2" [dependencies] js_int = "0.1.7" -ruma-api = { version = "0.16.1", path = "../ruma-api" } +ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" } ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" } ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" } diff --git a/ruma/Cargo.toml b/ruma/Cargo.toml index f4a1759a..656ddbc8 100644 --- a/ruma/Cargo.toml +++ b/ruma/Cargo.toml @@ -30,7 +30,7 @@ ruma-identifiers-macros = { version = "0.17.1", path = "../ruma-identifiers-macr ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events", optional = true } ruma-signatures = { version = "0.6.0-dev.1", path = "../ruma-signatures", optional = true } -ruma-api = { version = "0.16.1", path = "../ruma-api", optional = true } +ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api", optional = true } ruma-appservice-api = { version = "0.1.0", path = "../ruma-appservice-api", optional = true } ruma-client-api = { version = "0.9.0", path = "../ruma-client-api", optional = true } ruma-federation-api = { version = "0.0.2", path = "../ruma-federation-api", optional = true }