From 90683f0faa9dadf2aab35408a1899efdb58fbc58 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Mon, 16 Aug 2021 23:12:35 +0200 Subject: [PATCH] Release ruma-events 0.24.4 --- crates/ruma-api/Cargo.toml | 2 +- crates/ruma-appservice-api/Cargo.toml | 2 +- crates/ruma-client-api/Cargo.toml | 2 +- crates/ruma-events-macros/Cargo.toml | 2 +- crates/ruma-events/CHANGELOG.md | 7 +++++++ crates/ruma-events/Cargo.toml | 4 ++-- crates/ruma-federation-api/Cargo.toml | 2 +- crates/ruma-push-gateway-api/Cargo.toml | 2 +- crates/ruma-state-res/Cargo.toml | 2 +- crates/ruma/Cargo.toml | 2 +- 10 files changed, 17 insertions(+), 10 deletions(-) diff --git a/crates/ruma-api/Cargo.toml b/crates/ruma-api/Cargo.toml index a3bbfd7b..c8799386 100644 --- a/crates/ruma-api/Cargo.toml +++ b/crates/ruma-api/Cargo.toml @@ -37,5 +37,5 @@ serde_json = "1.0.61" thiserror = "1.0.23" [dev-dependencies] -ruma-events = { version = "0.24.3", path = "../ruma-events" } +ruma-events = { version = "0.24.4", path = "../ruma-events" } trybuild = "1.0.38" diff --git a/crates/ruma-appservice-api/Cargo.toml b/crates/ruma-appservice-api/Cargo.toml index de88fbda..a877062a 100644 --- a/crates/ruma-appservice-api/Cargo.toml +++ b/crates/ruma-appservice-api/Cargo.toml @@ -24,7 +24,7 @@ server = [] ruma-api = { version = "0.18.2", path = "../ruma-api" } ruma-client-api = { version = "0.12.0", path = "../ruma-client-api", features = ["client"], optional = true } ruma-common = { version = "0.6.0", path = "../ruma-common" } -ruma-events = { version = "0.24.3", path = "../ruma-events" } +ruma-events = { version = "0.24.4", path = "../ruma-events" } ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" } ruma-serde = { version = "0.5.0", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } diff --git a/crates/ruma-client-api/Cargo.toml b/crates/ruma-client-api/Cargo.toml index cca31ade..ed9d0cd4 100644 --- a/crates/ruma-client-api/Cargo.toml +++ b/crates/ruma-client-api/Cargo.toml @@ -36,7 +36,7 @@ maplit = "1.0.2" percent-encoding = "2.1.0" ruma-api = { version = "0.18.2", path = "../ruma-api" } ruma-common = { version = "0.6.0", path = "../ruma-common" } -ruma-events = { version = "0.24.3", path = "../ruma-events" } +ruma-events = { version = "0.24.4", path = "../ruma-events" } ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" } ruma-serde = { version = "0.5.0", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } diff --git a/crates/ruma-events-macros/Cargo.toml b/crates/ruma-events-macros/Cargo.toml index 2236590e..18aba520 100644 --- a/crates/ruma-events-macros/Cargo.toml +++ b/crates/ruma-events-macros/Cargo.toml @@ -13,7 +13,7 @@ license = "MIT" name = "ruma-events-macros" readme = "README.md" repository = "https://github.com/ruma/ruma" -version = "0.24.3" +version = "0.24.4" [lib] proc-macro = true diff --git a/crates/ruma-events/CHANGELOG.md b/crates/ruma-events/CHANGELOG.md index ecd5e7c6..4de00d07 100644 --- a/crates/ruma-events/CHANGELOG.md +++ b/crates/ruma-events/CHANGELOG.md @@ -1,5 +1,12 @@ # [unreleased] +# 0.24.4 + +Improvements: + +* Add a workaround for synapse putting `prev_content` in unsigned (only active + if the `compat` feature is enabled) + # 0.24.3 Improvements: diff --git a/crates/ruma-events/Cargo.toml b/crates/ruma-events/Cargo.toml index 028a702c..bf0b4cb5 100644 --- a/crates/ruma-events/Cargo.toml +++ b/crates/ruma-events/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" name = "ruma-events" readme = "README.md" repository = "https://github.com/ruma/ruma" -version = "0.24.3" +version = "0.24.4" edition = "2018" [package.metadata.docs.rs] @@ -28,7 +28,7 @@ indoc = "1.0" js_int = { version = "0.2.0", features = ["serde"] } pulldown-cmark = { version = "0.8", default-features = false, optional = true } ruma-common = { version = "0.6.0", path = "../ruma-common" } -ruma-events-macros = { version = "=0.24.3", path = "../ruma-events-macros" } +ruma-events-macros = { version = "=0.24.4", path = "../ruma-events-macros" } ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers", features = ["serde"] } ruma-serde = { version = "0.5.0", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } diff --git a/crates/ruma-federation-api/Cargo.toml b/crates/ruma-federation-api/Cargo.toml index 037343fd..fee3452f 100644 --- a/crates/ruma-federation-api/Cargo.toml +++ b/crates/ruma-federation-api/Cargo.toml @@ -28,7 +28,7 @@ server = [] js_int = { version = "0.2.0", features = ["serde"] } ruma-api = { version = "0.18.2", path = "../ruma-api" } ruma-common = { version = "0.6.0", path = "../ruma-common" } -ruma-events = { version = "0.24.3", path = "../ruma-events" } +ruma-events = { version = "0.24.4", path = "../ruma-events" } ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" } ruma-serde = { version = "0.5.0", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } diff --git a/crates/ruma-push-gateway-api/Cargo.toml b/crates/ruma-push-gateway-api/Cargo.toml index 0eef242d..55221ca0 100644 --- a/crates/ruma-push-gateway-api/Cargo.toml +++ b/crates/ruma-push-gateway-api/Cargo.toml @@ -22,7 +22,7 @@ server = [] js_int = { version = "0.2.0", features = ["serde"] } ruma-api = { version = "0.18.2", path = "../ruma-api" } ruma-common = { version = "0.6.0", path = "../ruma-common" } -ruma-events = { version = "0.24.3", path = "../ruma-events" } +ruma-events = { version = "0.24.4", path = "../ruma-events" } ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" } ruma-serde = { version = "0.5.0", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } diff --git a/crates/ruma-state-res/Cargo.toml b/crates/ruma-state-res/Cargo.toml index 2003e03b..de30516d 100644 --- a/crates/ruma-state-res/Cargo.toml +++ b/crates/ruma-state-res/Cargo.toml @@ -23,7 +23,7 @@ itertools = "0.10.0" js_int = "0.2.0" maplit = "1.0.2" ruma-common = { version = "0.6.0", path = "../ruma-common" } -ruma-events = { version = "0.24.3", path = "../ruma-events" } +ruma-events = { version = "0.24.4", path = "../ruma-events" } ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" } ruma-serde = { version = "0.5.0", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index 9cdb574c..5e75dc14 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -124,7 +124,7 @@ ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers", features ruma-serde = { version = "0.5.0", path = "../ruma-serde" } ruma-client = { version = "0.7.0", path = "../ruma-client", optional = true } -ruma-events = { version = "0.24.3", path = "../ruma-events", optional = true } +ruma-events = { version = "0.24.4", path = "../ruma-events", optional = true } ruma-signatures = { version = "0.9.0", path = "../ruma-signatures", optional = true } ruma-state-res = { version = "0.3.0", path = "../ruma-state-res", optional = true }