Merge branch 'ruma-0.7'
This commit is contained in:
commit
c42e150cd6
@ -1,5 +1,6 @@
|
|||||||
# [unreleased]
|
# [unreleased]
|
||||||
|
|
||||||
|
# 0.15.1
|
||||||
|
|
||||||
Improvements:
|
Improvements:
|
||||||
|
|
||||||
|
@ -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.15.0"
|
version = "0.15.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.62"
|
rust-version = "1.62"
|
||||||
|
|
||||||
|
@ -44,12 +44,12 @@ hyper-rustls = { version = "0.23.0", optional = true, default-features = false }
|
|||||||
hyper-tls = { version = "0.5.0", optional = true }
|
hyper-tls = { version = "0.5.0", optional = true }
|
||||||
isahc = { version = "1.3.1", optional = true }
|
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.15.0", path = "../ruma-client-api", optional = true, features = ["client"] }
|
ruma-client-api = { version = "0.15.1", path = "../ruma-client-api", optional = true, features = ["client"] }
|
||||||
ruma-common = { version = "0.10.3", path = "../ruma-common", features = ["api"] }
|
ruma-common = { version = "0.10.3", 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.15.0", path = "../ruma-client-api", features = ["client"] }
|
ruma-client-api = { version = "0.15.1", path = "../ruma-client-api", features = ["client"] }
|
||||||
tokio-stream = "0.1.8"
|
tokio-stream = "0.1.8"
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# [unreleased]
|
# [unreleased]
|
||||||
|
|
||||||
|
# 0.7.4
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
|
||||||
|
* Fix missing re-exports from `ruma-common`
|
||||||
|
* Upgrade `ruma-client-api` minimum version to 0.15.1
|
||||||
|
|
||||||
# 0.7.3
|
# 0.7.3
|
||||||
|
|
||||||
Upgrades ruma-common minimum version to 0.10.3.
|
Upgrades ruma-common minimum version to 0.10.3.
|
||||||
|
@ -7,7 +7,7 @@ homepage = "https://www.ruma.io/"
|
|||||||
repository = "https://github.com/ruma/ruma"
|
repository = "https://github.com/ruma/ruma"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
version = "0.7.3"
|
version = "0.7.4"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.62"
|
rust-version = "1.62"
|
||||||
|
|
||||||
@ -214,7 +214,7 @@ ruma-signatures = { version = "0.12.0", path = "../ruma-signatures", optional =
|
|||||||
ruma-state-res = { version = "0.8.0", path = "../ruma-state-res", optional = true }
|
ruma-state-res = { version = "0.8.0", path = "../ruma-state-res", optional = true }
|
||||||
|
|
||||||
ruma-appservice-api = { version = "0.7.0", path = "../ruma-appservice-api", optional = true }
|
ruma-appservice-api = { version = "0.7.0", path = "../ruma-appservice-api", optional = true }
|
||||||
ruma-client-api = { version = "0.15.0", path = "../ruma-client-api", optional = true }
|
ruma-client-api = { version = "0.15.1", path = "../ruma-client-api", optional = true }
|
||||||
ruma-federation-api = { version = "0.6.0", path = "../ruma-federation-api", optional = true }
|
ruma-federation-api = { version = "0.6.0", path = "../ruma-federation-api", optional = true }
|
||||||
ruma-identity-service-api = { version = "0.6.0", path = "../ruma-identity-service-api", optional = true }
|
ruma-identity-service-api = { version = "0.6.0", path = "../ruma-identity-service-api", optional = true }
|
||||||
ruma-push-gateway-api = { version = "0.6.0", path = "../ruma-push-gateway-api", optional = true }
|
ruma-push-gateway-api = { version = "0.6.0", path = "../ruma-push-gateway-api", optional = true }
|
||||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ruma = { version = "0.7.3", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-isahc", "rand"] }
|
ruma = { version = "0.7.4", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-isahc", "rand"] }
|
||||||
|
|
||||||
anyhow = "1.0.37"
|
anyhow = "1.0.37"
|
||||||
isahc = "1.3.1"
|
isahc = "1.3.1"
|
||||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ruma = { version = "0.7.3", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
|
ruma = { version = "0.7.4", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
|
||||||
|
|
||||||
anyhow = "1.0.37"
|
anyhow = "1.0.37"
|
||||||
tokio = { version = "1.0.1", features = ["macros", "rt"] }
|
tokio = { version = "1.0.1", features = ["macros", "rt"] }
|
||||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ruma = { version = "0.7.3", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
|
ruma = { version = "0.7.4", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
|
||||||
# For building locally: use the git dependencies below.
|
# For building locally: use the git dependencies below.
|
||||||
# Browse the source at this revision here: https://github.com/ruma/ruma/tree/f161c8117c706fc52089999e1f406cf34276ec9d
|
# Browse the source at this revision here: https://github.com/ruma/ruma/tree/f161c8117c706fc52089999e1f406cf34276ec9d
|
||||||
# ruma = { git = "https://github.com/ruma/ruma", rev = "f161c8117c706fc52089999e1f406cf34276ec9d", features = ["client-api-c", "client", "client-hyper-native-tls", "events"] }
|
# ruma = { git = "https://github.com/ruma/ruma", rev = "f161c8117c706fc52089999e1f406cf34276ec9d", features = ["client-api-c", "client", "client-hyper-native-tls", "events"] }
|
||||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ruma = { version = "0.7.3", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls"] }
|
ruma = { version = "0.7.4", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls"] }
|
||||||
|
|
||||||
anyhow = "1.0.37"
|
anyhow = "1.0.37"
|
||||||
assign = "1.1.1"
|
assign = "1.1.1"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user