Release ruma-client-api 0.13.0

This commit is contained in:
Jonas Platte 2022-02-19 14:58:41 +01:00
parent 93b200d1a3
commit 95fdb303c8
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
5 changed files with 7 additions and 5 deletions

View File

@ -21,7 +21,7 @@ server = []
[dependencies]
ruma-api = { version = "0.20.0", path = "../ruma-api" }
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", features = ["client"], optional = true }
ruma-client-api = { version = "0.13.0", path = "../ruma-client-api", features = ["client"], optional = true }
ruma-common = { version = "0.8.0", path = "../ruma-common" }
ruma-events = { version = "0.26.0", path = "../ruma-events" }
ruma-identifiers = { version = "0.22.0", path = "../ruma-identifiers" }

View File

@ -1,5 +1,7 @@
# [unreleased]
# 0.13.0
Bug fixes:
* Fix deserialization of `r0::session::get_login_types::CustomLoginType`.

View File

@ -7,7 +7,7 @@ license = "MIT"
name = "ruma-client-api"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.12.3"
version = "0.13.0"
edition = "2018"
[package.metadata.docs.rs]

View File

@ -42,7 +42,7 @@ hyper-tls = { version = "0.5.0", optional = true }
isahc-crate = { package = "isahc", version = "1.3.1", optional = true }
reqwest = { version = "0.11.4", optional = true, default-features = false }
ruma-api = { version = "0.20.0", path = "../ruma-api" }
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", optional = true, features = ["client"] }
ruma-client-api = { version = "0.13.0", path = "../ruma-client-api", optional = true, features = ["client"] }
ruma-common = { version = "0.8.0", path = "../ruma-common" }
ruma-identifiers = { version = "0.22.0", path = "../ruma-identifiers" }
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
@ -51,5 +51,5 @@ serde_json = "1.0.61"
tracing = { version = "0.1.30", default-features = false, features = ["std"] }
[dev-dependencies]
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", features = ["client"] }
ruma-client-api = { version = "0.13.0", path = "../ruma-client-api", features = ["client"] }
tokio-stream = "0.1.8"

View File

@ -152,7 +152,7 @@ ruma-state-res = { version = "0.5.0", path = "../ruma-state-res", optional = tru
ruma-api = { version = "0.20.0", path = "../ruma-api", optional = true }
ruma-appservice-api = { version = "0.4.0", path = "../ruma-appservice-api", optional = true }
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", optional = true }
ruma-client-api = { version = "0.13.0", path = "../ruma-client-api", optional = true }
ruma-federation-api = { version = "0.3.1", path = "../ruma-federation-api", optional = true }
ruma-identity-service-api = { version = "0.3.0", path = "../ruma-identity-service-api", optional = true }
ruma-push-gateway-api = { version = "0.3.0", path = "../ruma-push-gateway-api", optional = true }