From be4584b4759da6fd203945ffb8ed5db354b6b21a Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Thu, 24 Jun 2021 13:17:55 +0200 Subject: [PATCH] Release ruma-serde 0.4.1 --- crates/ruma-api/Cargo.toml | 2 +- crates/ruma-appservice-api/Cargo.toml | 2 +- crates/ruma-client-api/Cargo.toml | 2 +- crates/ruma-client/Cargo.toml | 2 +- crates/ruma-common/Cargo.toml | 2 +- crates/ruma-events/Cargo.toml | 2 +- crates/ruma-federation-api/Cargo.toml | 2 +- crates/ruma-identifiers/Cargo.toml | 4 ++-- crates/ruma-identity-service-api/Cargo.toml | 2 +- crates/ruma-push-gateway-api/Cargo.toml | 2 +- crates/ruma-serde-macros/Cargo.toml | 2 +- crates/ruma-serde/CHANGELOG.md | 2 ++ crates/ruma-serde/Cargo.toml | 4 ++-- crates/ruma-signatures/Cargo.toml | 2 +- crates/ruma-state-res/Cargo.toml | 2 +- crates/ruma/Cargo.toml | 2 +- 16 files changed, 19 insertions(+), 17 deletions(-) diff --git a/crates/ruma-api/Cargo.toml b/crates/ruma-api/Cargo.toml index 7169c663..4a2be668 100644 --- a/crates/ruma-api/Cargo.toml +++ b/crates/ruma-api/Cargo.toml @@ -31,7 +31,7 @@ http = "0.2.2" percent-encoding = "2.1.0" ruma-api-macros = { version = "=0.17.0", path = "../ruma-api-macros" } ruma-identifiers = { version = "0.19.3", path = "../ruma-identifiers" } -ruma-serde = { version = "0.4.0", path = "../ruma-serde" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" thiserror = "1.0.23" diff --git a/crates/ruma-appservice-api/Cargo.toml b/crates/ruma-appservice-api/Cargo.toml index f1586834..1a511bb5 100644 --- a/crates/ruma-appservice-api/Cargo.toml +++ b/crates/ruma-appservice-api/Cargo.toml @@ -26,7 +26,7 @@ ruma-client-api = { version = "0.11.0", path = "../ruma-client-api", features = ruma-common = { version = "0.5.4", path = "../ruma-common" } ruma-events = { version = "0.23.0", path = "../ruma-events" } ruma-identifiers = { version = "0.19.3", path = "../ruma-identifiers" } -ruma-serde = { version = "0.4.0", path = "../ruma-serde" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" tracing = { version = "0.1.25", optional = true } diff --git a/crates/ruma-client-api/Cargo.toml b/crates/ruma-client-api/Cargo.toml index 7d7cfc58..6b1a4e5b 100644 --- a/crates/ruma-client-api/Cargo.toml +++ b/crates/ruma-client-api/Cargo.toml @@ -38,7 +38,7 @@ ruma-api = { version = "0.17.0", path = "../ruma-api" } ruma-common = { version = "0.5.4", path = "../ruma-common" } ruma-events = { version = "0.23.0", path = "../ruma-events" } ruma-identifiers = { version = "0.19.3", path = "../ruma-identifiers" } -ruma-serde = { version = "0.4.0", path = "../ruma-serde" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" diff --git a/crates/ruma-client/Cargo.toml b/crates/ruma-client/Cargo.toml index 1ba974ae..1b2ab99a 100644 --- a/crates/ruma-client/Cargo.toml +++ b/crates/ruma-client/Cargo.toml @@ -48,7 +48,7 @@ ruma-api = { version = "0.17.0", path = "../ruma-api" } ruma-client-api = { version = "0.11.0", path = "../ruma-client-api", optional = true, features = ["client"] } ruma-common = { version = "0.5.4", path = "../ruma-common" } ruma-identifiers = { version = "0.19.3", path = "../ruma-identifiers" } -ruma-serde = { version = "0.4.0", path = "../ruma-serde" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" diff --git a/crates/ruma-common/Cargo.toml b/crates/ruma-common/Cargo.toml index 1a8f6c42..cf557576 100644 --- a/crates/ruma-common/Cargo.toml +++ b/crates/ruma-common/Cargo.toml @@ -23,7 +23,7 @@ unstable-pre-spec = [] indexmap = { version = "1.6.2", features = ["serde-1"] } js_int = { version = "0.2.0", features = ["serde"] } ruma-identifiers = { version = "0.19.3", path = "../ruma-identifiers" } -ruma-serde = { version = "0.4.0", path = "../ruma-serde" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } serde_json = { version = "1.0.60", features = ["raw_value"] } tracing = "0.1.25" diff --git a/crates/ruma-events/Cargo.toml b/crates/ruma-events/Cargo.toml index d753c31b..f99a5933 100644 --- a/crates/ruma-events/Cargo.toml +++ b/crates/ruma-events/Cargo.toml @@ -30,7 +30,7 @@ pulldown-cmark = { version = "0.8", default-features = false, optional = true } ruma-common = { version = "0.5.4", path = "../ruma-common" } ruma-events-macros = { version = "=0.23.0", path = "../ruma-events-macros" } ruma-identifiers = { version = "0.19.3", path = "../ruma-identifiers", features = ["serde"] } -ruma-serde = { version = "0.4.0", path = "../ruma-serde" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } serde_json = { version = "1.0.60", features = ["raw_value"] } diff --git a/crates/ruma-federation-api/Cargo.toml b/crates/ruma-federation-api/Cargo.toml index 30ed21c3..08830ca3 100644 --- a/crates/ruma-federation-api/Cargo.toml +++ b/crates/ruma-federation-api/Cargo.toml @@ -30,7 +30,7 @@ ruma-api = { version = "0.17.0", path = "../ruma-api" } ruma-common = { version = "0.5.4", path = "../ruma-common" } ruma-events = { version = "0.23.0", path = "../ruma-events" } ruma-identifiers = { version = "0.19.3", path = "../ruma-identifiers" } -ruma-serde = { version = "0.4.0", path = "../ruma-serde" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" diff --git a/crates/ruma-identifiers/Cargo.toml b/crates/ruma-identifiers/Cargo.toml index 168ffc15..fe4aafcd 100644 --- a/crates/ruma-identifiers/Cargo.toml +++ b/crates/ruma-identifiers/Cargo.toml @@ -29,8 +29,8 @@ paste = "1.0.5" rand = { version = "0.8.3", optional = true } ruma-identifiers-macros = { version = "=0.19.3", path = "../ruma-identifiers-macros" } ruma-identifiers-validation = { version = "0.4.0", path = "../ruma-identifiers-validation", default-features = false } -ruma-serde = { version = "0.4.0", path = "../ruma-serde", optional = true } -ruma-serde-macros = { version = "=0.4.0", path = "../ruma-serde-macros" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde", optional = true } +ruma-serde-macros = { version = "=0.4.1", path = "../ruma-serde-macros" } # Renamed so we can have a serde feature. serde1 = { package = "serde", version = "1.0.126", optional = true, features = ["derive"] } diff --git a/crates/ruma-identity-service-api/Cargo.toml b/crates/ruma-identity-service-api/Cargo.toml index 704907e6..ebfebac1 100644 --- a/crates/ruma-identity-service-api/Cargo.toml +++ b/crates/ruma-identity-service-api/Cargo.toml @@ -23,7 +23,7 @@ js_int = { version = "0.2.0", features = ["serde"] } ruma-api = { version = "0.17.0", path = "../ruma-api" } ruma-common = { version = "0.5.4", path = "../ruma-common" } ruma-identifiers = { version = "0.19.3", path = "../ruma-identifiers" } -ruma-serde = { version = "0.4.0", path = "../ruma-serde" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } [dev-dependencies] diff --git a/crates/ruma-push-gateway-api/Cargo.toml b/crates/ruma-push-gateway-api/Cargo.toml index 40f41d75..3b5d7f66 100644 --- a/crates/ruma-push-gateway-api/Cargo.toml +++ b/crates/ruma-push-gateway-api/Cargo.toml @@ -24,6 +24,6 @@ ruma-api = { version = "0.17.0", path = "../ruma-api" } ruma-common = { version = "0.5.4", path = "../ruma-common" } ruma-events = { version = "0.23.0", path = "../ruma-events" } ruma-identifiers = { version = "0.19.3", path = "../ruma-identifiers" } -ruma-serde = { version = "0.4.0", path = "../ruma-serde" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" diff --git a/crates/ruma-serde-macros/Cargo.toml b/crates/ruma-serde-macros/Cargo.toml index b29976a4..563475b9 100644 --- a/crates/ruma-serde-macros/Cargo.toml +++ b/crates/ruma-serde-macros/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["matrix", "chat", "messaging", "ruma"] license = "MIT" name = "ruma-serde-macros" repository = "https://github.com/ruma/ruma" -version = "0.4.0" +version = "0.4.1" edition = "2018" [lib] diff --git a/crates/ruma-serde/CHANGELOG.md b/crates/ruma-serde/CHANGELOG.md index 0c2372a6..fa3aac2e 100644 --- a/crates/ruma-serde/CHANGELOG.md +++ b/crates/ruma-serde/CHANGELOG.md @@ -1,5 +1,7 @@ # [unreleased] +# 0.4.1 + Improvements: * Remove unneeded cargo feature from a dependency diff --git a/crates/ruma-serde/Cargo.toml b/crates/ruma-serde/Cargo.toml index 811cc5e4..af9b6ad7 100644 --- a/crates/ruma-serde/Cargo.toml +++ b/crates/ruma-serde/Cargo.toml @@ -9,7 +9,7 @@ authors = [ ] homepage = "https://www.ruma.io/" repository = "https://github.com/ruma/ruma" -version = "0.4.0" +version = "0.4.1" edition = "2018" [dependencies] @@ -17,7 +17,7 @@ bytes = "1.0.1" form_urlencoded = "1.0.0" itoa = "0.4.6" js_int = { version = "0.2.0", features = ["serde"] } -ruma-serde-macros = { version = "=0.4.0", path = "../ruma-serde-macros" } +ruma-serde-macros = { version = "=0.4.1", path = "../ruma-serde-macros" } serde = { version = "1.0.118", features = ["derive"] } serde_json = { version = "1.0.61", features = ["raw_value"] } diff --git a/crates/ruma-signatures/Cargo.toml b/crates/ruma-signatures/Cargo.toml index 25a7dd61..05d28b04 100644 --- a/crates/ruma-signatures/Cargo.toml +++ b/crates/ruma-signatures/Cargo.toml @@ -25,7 +25,7 @@ pkcs8 = { version = "0.7.0", features = ["alloc"] } # because dalek uses an older version of rand_core rand = { version = "0.7", features = ["getrandom"] } ruma-identifiers = { version = "0.19.3", path = "../ruma-identifiers" } -ruma-serde = { version = "0.4.0", path = "../ruma-serde" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde" } serde_json = "1.0.60" sha2 = "0.9.5" thiserror = "1.0.23" diff --git a/crates/ruma-state-res/Cargo.toml b/crates/ruma-state-res/Cargo.toml index d391a22c..2bf0d4af 100644 --- a/crates/ruma-state-res/Cargo.toml +++ b/crates/ruma-state-res/Cargo.toml @@ -25,7 +25,7 @@ maplit = "1.0.2" ruma-common = { version = "0.5.4", path = "../ruma-common" } ruma-events = { version = "0.23.0", path = "../ruma-events" } ruma-identifiers = { version = "0.19.3", path = "../ruma-identifiers" } -ruma-serde = { version = "0.4.0", path = "../ruma-serde" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde" } serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.60" thiserror = "1.0.22" diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index bef597db..7d6f9bd0 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -121,7 +121,7 @@ js_int = "0.2.0" ruma-common = { version = "0.5.4", path = "../ruma-common" } ruma-identifiers = { version = "0.19.3", path = "../ruma-identifiers", features = ["serde"] } -ruma-serde = { version = "0.4.0", path = "../ruma-serde" } +ruma-serde = { version = "0.4.1", path = "../ruma-serde" } ruma-client = { version = "0.6.0", path = "../ruma-client", optional = true } ruma-events = { version = "0.23.0", path = "../ruma-events", optional = true }