Skip to content

Commit a9224ea

Browse files
committed
Upgrade Ruma
1 parent 68e3e38 commit a9224ea

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
- name: Install MSRV toolchain
2727
uses: dtolnay/rust-toolchain@master
2828
with:
29-
toolchain: "1.88"
29+
toolchain: "1.89"
3030

3131
- uses: Swatinem/rust-cache@v2
3232
with:
3333
# A stable compiler update should automatically not reuse old caches.
3434
# Add the MSRV as a stable cache key too so bumping it also gets us a
3535
# fresh cache.
36-
shared-key: msrv1.88
36+
shared-key: msrv1.89
3737

3838
- name: Run checks
3939
run: cargo check --all-features

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [unreleased]
44

5+
Breaking changes:
6+
7+
- Upgrade Ruma to 0.15.0
8+
- Bump MSRV to 1.89.
9+
510
## 0.9.0
611

712
Breaking changes:

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords = ["matrix", "chat", "messaging", "ruma"]
88
license = "MIT"
99
repository = "https://github.com/ruma/synapse-admin-api"
1010
edition = "2024"
11-
rust-version = "1.88"
11+
rust-version = "1.89"
1212

1313
[features]
1414
client = []
@@ -19,7 +19,7 @@ shared-secret-registration-mac = ["dep:hex", "dep:hmac", "dep:sha1"]
1919
[dependencies]
2020
hex = { version = "0.4.3", optional = true }
2121
hmac = { version = "0.12.1", optional = true }
22-
ruma = { version = "0.14.1", features = ["api", "events"] }
22+
ruma = { version = "0.15.0", features = ["api", "events"] }
2323
serde = { version = "1.0.118", features = ["derive"] }
2424
sha1 = { version = "0.10.1", optional = true }
2525

0 commit comments

Comments
 (0)