From 504dd1cadfa8bed7555d04ed8d26166743317b6a Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Mon, 17 May 2021 01:42:19 +0200 Subject: [PATCH] Release ruma-client 0.5.0 --- crates/ruma-client/CHANGELOG.md | 9 ++++++--- crates/ruma-client/Cargo.toml | 2 +- crates/ruma/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/crates/ruma-client/CHANGELOG.md b/crates/ruma-client/CHANGELOG.md index 18f09cd9..35f47bb1 100644 --- a/crates/ruma-client/CHANGELOG.md +++ b/crates/ruma-client/CHANGELOG.md @@ -1,10 +1,13 @@ -# 0.5.0 (unreleased) +# [unreleased] + +# 0.5.0 Breaking changes: -* Rename the Cargo feature `tls` to `tls-native` +* Make `Client` generic over the http client +* Make the ruma-client-api dependency optional * Upgrade dependencies Improvements: -* Add support for rustls as the TLS backend +* Add support for multiple HTTP clients diff --git a/crates/ruma-client/Cargo.toml b/crates/ruma-client/Cargo.toml index dc55d580..172ce929 100644 --- a/crates/ruma-client/Cargo.toml +++ b/crates/ruma-client/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" name = "ruma-client" readme = "README.md" repository = "https://github.com/ruma/ruma" -version = "0.5.0-alpha.2" +version = "0.5.0" [features] client-api = ["ruma-client-api"] diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index 27386cd7..c0fd689d 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -23,7 +23,7 @@ ruma-common = { version = "0.5.1", path = "../ruma-common" } ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers", features = ["serde"] } ruma-serde = { version = "0.4.0", path = "../ruma-serde" } -ruma-client = { version = "=0.5.0-alpha.2", path = "../ruma-client", optional = true } +ruma-client = { version = "0.5.0", path = "../ruma-client", optional = true } ruma-events = { version = "0.22.0", path = "../ruma-events", optional = true } ruma-signatures = { version = "0.7.1", path = "../ruma-signatures", optional = true } ruma-state-res = { version = "0.1.0", path = "../ruma-state-res", optional = true }