Release ruma-client-api 0.12.0

This commit is contained in:
Jonas Platte 2021-08-11 17:49:01 +02:00
parent db57fa2a45
commit 459fd09a31
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67
5 changed files with 7 additions and 5 deletions

View File

@ -22,7 +22,7 @@ server = []
[dependencies]
ruma-api = { version = "0.18.1", path = "../ruma-api" }
ruma-client-api = { version = "0.11.2", path = "../ruma-client-api", features = ["client"], optional = true }
ruma-client-api = { version = "0.12.0", path = "../ruma-client-api", features = ["client"], optional = true }
ruma-common = { version = "0.6.0", path = "../ruma-common" }
ruma-events = { version = "0.24.0", path = "../ruma-events" }
ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" }

View File

@ -1,5 +1,7 @@
# [unreleased]
# 0.12.0
Breaking changes:
* Change inconsistent types in `rooms` and `not_rooms` fields in

View File

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

View File

@ -46,7 +46,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.18.1", path = "../ruma-api" }
ruma-client-api = { version = "0.11.2", path = "../ruma-client-api", optional = true, features = ["client"] }
ruma-client-api = { version = "0.12.0", path = "../ruma-client-api", optional = true, features = ["client"] }
ruma-common = { version = "0.6.0", path = "../ruma-common" }
ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" }
ruma-serde = { version = "0.5.0", path = "../ruma-serde" }
@ -54,4 +54,4 @@ serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
[dev-dependencies]
ruma-client-api = { version = "0.11.2", path = "../ruma-client-api", features = ["client"] }
ruma-client-api = { version = "0.12.0", path = "../ruma-client-api", features = ["client"] }

View File

@ -130,7 +130,7 @@ ruma-state-res = { version = "0.2.0", path = "../ruma-state-res", optional = tru
ruma-api = { version = "0.18.1", path = "../ruma-api", optional = true }
ruma-appservice-api = { version = "0.3.0", path = "../ruma-appservice-api", optional = true }
ruma-client-api = { version = "0.11.2", path = "../ruma-client-api", optional = true }
ruma-client-api = { version = "0.12.0", path = "../ruma-client-api", optional = true }
ruma-federation-api = { version = "0.2.0", path = "../ruma-federation-api", optional = true }
ruma-identity-service-api = { version = "0.2.0", path = "../ruma-identity-service-api", optional = true }
ruma-push-gateway-api = { version = "0.2.0", path = "../ruma-push-gateway-api", optional = true }