Release ruma-client 0.8.0

This commit is contained in:
Jonas Platte 2022-02-19 15:08:13 +01:00
parent 82436b57ba
commit f9eff3d261
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
3 changed files with 16 additions and 2 deletions

View File

@ -1,5 +1,19 @@
# [unreleased] # [unreleased]
# 0.8.0
Breaking changes:
* Upgrade dependencies
* The whole `Client` is now feature-gated (`client-api` feature).
We may introduce a separate `FederationClient` and possibly other types like
that in the future.
Improvements:
* Rewrite `Client` initialization and store server-supported Matrix versions in
it, to determine whether to use stable, unstable or r0 paths for endpoints
# 0.7.0 # 0.7.0
Breaking changes: Breaking changes:

View File

@ -8,7 +8,7 @@ license = "MIT"
name = "ruma-client" name = "ruma-client"
readme = "README.md" readme = "README.md"
repository = "https://github.com/ruma/ruma" repository = "https://github.com/ruma/ruma"
version = "0.7.0" version = "0.8.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true

View File

@ -145,7 +145,7 @@ ruma-common = { version = "0.8.0", path = "../ruma-common" }
ruma-identifiers = { version = "0.22.0", path = "../ruma-identifiers", features = ["serde"] } ruma-identifiers = { version = "0.22.0", path = "../ruma-identifiers", features = ["serde"] }
ruma-serde = { version = "0.6.0", path = "../ruma-serde" } ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
ruma-client = { version = "0.7.0", path = "../ruma-client", optional = true } ruma-client = { version = "0.8.0", path = "../ruma-client", optional = true }
ruma-events = { version = "0.26.0", path = "../ruma-events", optional = true } ruma-events = { version = "0.26.0", path = "../ruma-events", optional = true }
ruma-signatures = { version = "0.10.0", path = "../ruma-signatures", optional = true } ruma-signatures = { version = "0.10.0", path = "../ruma-signatures", optional = true }
ruma-state-res = { version = "0.6.0", path = "../ruma-state-res", optional = true } ruma-state-res = { version = "0.6.0", path = "../ruma-state-res", optional = true }