From 0903289387d7edf16dfbade5804a87b3c1c3f430 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 1 Feb 2023 14:24:03 +0100 Subject: [PATCH] Release ruma 0.8.0 --- crates/ruma/CHANGELOG.md | 11 +++++++++++ crates/ruma/Cargo.toml | 2 +- examples/hello_isahc/Cargo.toml | 2 +- examples/hello_world/Cargo.toml | 2 +- examples/joke_bot/Cargo.toml | 2 +- examples/message_log/Cargo.toml | 2 +- 6 files changed, 16 insertions(+), 5 deletions(-) diff --git a/crates/ruma/CHANGELOG.md b/crates/ruma/CHANGELOG.md index f27713d7..ec101b70 100644 --- a/crates/ruma/CHANGELOG.md +++ b/crates/ruma/CHANGELOG.md @@ -1,5 +1,16 @@ # [unreleased] +# 0.8.0 + +Please refer to the changelogs of: + +* ruma-common 0.11.0 +* ruma-appservice-api 0.8.0 +* ruma-client-api 0.16.0 +* ruma-federation-api 0.7.0 +* ruma-server-util 0.1.0 +* ruma-state-res 0.9.0 + # 0.7.4 Improvements: diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index ed309df3..f39923e5 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -7,7 +7,7 @@ homepage = "https://www.ruma.io/" repository = "https://github.com/ruma/ruma" readme = "README.md" license = "MIT" -version = "0.7.4" +version = "0.8.0" edition = "2021" rust-version = "1.64" diff --git a/examples/hello_isahc/Cargo.toml b/examples/hello_isahc/Cargo.toml index 89684fcd..6d690d94 100644 --- a/examples/hello_isahc/Cargo.toml +++ b/examples/hello_isahc/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" publish = false [dependencies] -ruma = { version = "0.7.4", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-isahc", "rand"] } +ruma = { version = "0.8.0", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-isahc", "rand"] } anyhow = "1.0.37" isahc = "1.3.1" diff --git a/examples/hello_world/Cargo.toml b/examples/hello_world/Cargo.toml index 3b94a1e5..a9b3dd35 100644 --- a/examples/hello_world/Cargo.toml +++ b/examples/hello_world/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" publish = false [dependencies] -ruma = { version = "0.7.4", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] } +ruma = { version = "0.8.0", 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"] } diff --git a/examples/joke_bot/Cargo.toml b/examples/joke_bot/Cargo.toml index 2bebb0c3..2971a952 100644 --- a/examples/joke_bot/Cargo.toml +++ b/examples/joke_bot/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" publish = false [dependencies] -ruma = { version = "0.7.4", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] } +ruma = { version = "0.8.0", 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"] } diff --git a/examples/message_log/Cargo.toml b/examples/message_log/Cargo.toml index 876d9f8f..7b1f5b0a 100644 --- a/examples/message_log/Cargo.toml +++ b/examples/message_log/Cargo.toml @@ -6,6 +6,6 @@ publish = false [dependencies] anyhow = "1.0.37" -ruma = { version = "0.7.4", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls"] } +ruma = { version = "0.8.0", 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 }