Release ruma-client 0.5.0

This commit is contained in:
Jonas Platte 2021-05-17 01:42:19 +02:00
parent 224b4e7707
commit 504dd1cadf
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
3 changed files with 8 additions and 5 deletions

View File

@ -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

View File

@ -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"]

View File

@ -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 }