Release ruma-client-api 0.14.0

This commit is contained in:
Jonas Platte 2022-04-28 16:40:25 +02:00
parent 4e8d88617d
commit e5388254bb
No known key found for this signature in database
GPG Key ID: BBA95679259D342F
5 changed files with 7 additions and 5 deletions

View File

@ -20,7 +20,7 @@ client = []
server = [] server = []
[dependencies] [dependencies]
ruma-client-api = { version = "0.13.0", path = "../ruma-client-api", features = ["client"], optional = true } ruma-client-api = { version = "0.14.0", path = "../ruma-client-api", features = ["client"], optional = true }
ruma-common = { version = "0.9.0", path = "../ruma-common", features = ["api", "events"] } ruma-common = { version = "0.9.0", path = "../ruma-common", features = ["api", "events"] }
serde = { version = "1.0.118", features = ["derive"] } serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61" serde_json = "1.0.61"

View File

@ -1,5 +1,7 @@
# [unreleased] # [unreleased]
# 0.14.0
Bug fixes: Bug fixes:
* Fix HTTP method of `backup::update_backup` * Fix HTTP method of `backup::update_backup`

View File

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

View File

@ -41,12 +41,12 @@ hyper-rustls-crate = { package = "hyper-rustls", version = "0.23.0", optional =
hyper-tls = { version = "0.5.0", optional = true } hyper-tls = { version = "0.5.0", optional = true }
isahc-crate = { package = "isahc", version = "1.3.1", optional = true } isahc-crate = { package = "isahc", version = "1.3.1", optional = true }
reqwest = { version = "0.11.4", optional = true, default-features = false } reqwest = { version = "0.11.4", optional = true, default-features = false }
ruma-client-api = { version = "0.13.0", path = "../ruma-client-api", optional = true, features = ["client"] } ruma-client-api = { version = "0.14.0", path = "../ruma-client-api", optional = true, features = ["client"] }
ruma-common = { version = "0.9.0", path = "../ruma-common", features = ["api"] } ruma-common = { version = "0.9.0", path = "../ruma-common", features = ["api"] }
serde = { version = "1.0.118", features = ["derive"] } serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61" serde_json = "1.0.61"
tracing = { version = "0.1.30", default-features = false, features = ["std"] } tracing = { version = "0.1.30", default-features = false, features = ["std"] }
[dev-dependencies] [dev-dependencies]
ruma-client-api = { version = "0.13.0", path = "../ruma-client-api", features = ["client"] } ruma-client-api = { version = "0.14.0", path = "../ruma-client-api", features = ["client"] }
tokio-stream = "0.1.8" tokio-stream = "0.1.8"

View File

@ -174,7 +174,7 @@ ruma-signatures = { version = "0.10.0", path = "../ruma-signatures", optional =
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 }
ruma-appservice-api = { version = "0.5.0", path = "../ruma-appservice-api", optional = true } ruma-appservice-api = { version = "0.5.0", path = "../ruma-appservice-api", optional = true }
ruma-client-api = { version = "0.13.0", path = "../ruma-client-api", optional = true } ruma-client-api = { version = "0.14.0", path = "../ruma-client-api", optional = true }
ruma-federation-api = { version = "0.4.0", path = "../ruma-federation-api", optional = true } ruma-federation-api = { version = "0.4.0", path = "../ruma-federation-api", optional = true }
ruma-identity-service-api = { version = "0.4.0", path = "../ruma-identity-service-api", optional = true } ruma-identity-service-api = { version = "0.4.0", path = "../ruma-identity-service-api", optional = true }
ruma-push-gateway-api = { version = "0.4.0", path = "../ruma-push-gateway-api", optional = true } ruma-push-gateway-api = { version = "0.4.0", path = "../ruma-push-gateway-api", optional = true }