From 64f19d21c7b0e12cb563fad9a54ac0287d787cf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Mon, 13 May 2024 15:25:29 +0200 Subject: [PATCH] Release ruma 0.10.1 --- crates/ruma/CHANGELOG.md | 4 ++++ crates/ruma/Cargo.toml | 2 +- examples/hello_world/Cargo.toml | 2 +- examples/joke_bot/Cargo.toml | 2 +- examples/message_log/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/crates/ruma/CHANGELOG.md b/crates/ruma/CHANGELOG.md index 3d84cb9f..59a9c6c2 100644 --- a/crates/ruma/CHANGELOG.md +++ b/crates/ruma/CHANGELOG.md @@ -1,5 +1,9 @@ # [unreleased] +# 0.10.1 + +Upgrade `ruma-events` to 0.28.1. + # 0.10.0 - Bump MSRV to 1.75 diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index 86c4a711..b2c36f4e 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -7,7 +7,7 @@ homepage = "https://ruma.dev/" repository = "https://github.com/ruma/ruma" readme = "README.md" license = "MIT" -version = "0.10.0" +version = "0.10.1" edition = "2021" rust-version = { workspace = true } diff --git a/examples/hello_world/Cargo.toml b/examples/hello_world/Cargo.toml index 32347f0f..8ee569ea 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.10.0", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] } +ruma = { version = "0.10.1", 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 7f18bd3e..417a0b20 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.10.0", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] } +ruma = { version = "0.10.1", 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 c70906f7..868d3f5b 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.10.0", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls"] } +ruma = { version = "0.10.1", 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 }