Release ruma 0.8.2

This commit is contained in:
Kévin Commaille 2023-02-15 13:22:51 +01:00
parent 8cd72fa892
commit 361b4d2ab1
No known key found for this signature in database
GPG Key ID: DD507DAE96E8245C
6 changed files with 14 additions and 5 deletions

View File

@ -1,5 +1,14 @@
# [unreleased]
# 0.8.2
Please refer to the changelogs of:
* ruma-common 0.11.3
* ruma-client-api 0.16.1
* ruma-federation-api 0.7.1
* ruma-identifiers-validation 0.9.1
# 0.8.1
Add the `server-util` feature, which activates a re-export of the new

View File

@ -7,7 +7,7 @@ homepage = "https://www.ruma.io/"
repository = "https://github.com/ruma/ruma"
readme = "README.md"
license = "MIT"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
rust-version = "1.64"

View File

@ -5,7 +5,7 @@ edition = "2021"
publish = false
[dependencies]
ruma = { version = "0.8.1", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-isahc", "rand"] }
ruma = { version = "0.8.2", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-isahc", "rand"] }
anyhow = "1.0.37"
isahc = "1.3.1"

View File

@ -5,7 +5,7 @@ edition = "2021"
publish = false
[dependencies]
ruma = { version = "0.8.1", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
ruma = { version = "0.8.2", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
anyhow = "1.0.37"
tokio = { version = "1.0.1", features = ["macros", "rt"] }

View File

@ -5,7 +5,7 @@ edition = "2021"
publish = false
[dependencies]
ruma = { version = "0.8.1", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
ruma = { version = "0.8.2", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
# For building locally: use the git dependencies below.
# 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"] }

View File

@ -6,6 +6,6 @@ publish = false
[dependencies]
anyhow = "1.0.37"
ruma = { version = "0.8.1", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls"] }
ruma = { version = "0.8.2", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls"] }
tokio = { version = "1.0.1", features = ["macros", "rt"] }
tokio-stream = { version = "0.1.1", default-features = false }