From d0ea88f1f884ae2f96aa4db9a48483e6ba564211 Mon Sep 17 00:00:00 2001 From: "stoat-release[bot]" <245062572+stoat-release[bot]@users.noreply.github.com> Date: Sat, 10 Jan 2026 16:04:28 +0000 Subject: [PATCH] chore(main): release 0.9.3 (#488) Co-authored-by: stoat-release[bot] <245062572+stoat-release[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ crates/bonfire/Cargo.toml | 2 +- crates/core/coalesced/Cargo.toml | 2 +- crates/core/config/Cargo.toml | 4 ++-- crates/core/database/Cargo.toml | 14 +++++++------- crates/core/files/Cargo.toml | 6 +++--- crates/core/models/Cargo.toml | 6 +++--- crates/core/parser/Cargo.toml | 2 +- crates/core/permissions/Cargo.toml | 4 ++-- crates/core/presence/Cargo.toml | 4 ++-- crates/core/ratelimits/Cargo.toml | 8 ++++---- crates/core/result/Cargo.toml | 2 +- crates/daemons/crond/Cargo.toml | 10 +++++----- crates/daemons/pushd/Cargo.toml | 12 ++++++------ crates/daemons/voice-ingress/Cargo.toml | 2 +- crates/delta/Cargo.toml | 2 +- crates/services/autumn/Cargo.toml | 12 ++++++------ crates/services/gifbox/Cargo.toml | 14 +++++++------- crates/services/january/Cargo.toml | 10 +++++----- version.txt | 2 +- 21 files changed, 67 insertions(+), 60 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 19735b03..968b3cc7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.2" + ".": "0.9.3" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c7466e9..e5687901 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.9.3](https://github.com/stoatchat/stoatchat/compare/v0.9.2...v0.9.3) (2026-01-10) + + +### Bug Fixes + +* pipeline fixes ([#487](https://github.com/stoatchat/stoatchat/issues/487)) ([aeeafeb](https://github.com/stoatchat/stoatchat/commit/aeeafebefc36a43a656cf797c9251ca50292733c)) + ## [0.9.2](https://github.com/stoatchat/stoatchat/compare/v0.9.1...v0.9.2) (2026-01-10) diff --git a/crates/bonfire/Cargo.toml b/crates/bonfire/Cargo.toml index cea3987a..861ed1da 100644 --- a/crates/bonfire/Cargo.toml +++ b/crates/bonfire/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-bonfire" -version = "0.9.2" +version = "0.9.3" license = "AGPL-3.0-or-later" edition = "2021" publish = false diff --git a/crates/core/coalesced/Cargo.toml b/crates/core/coalesced/Cargo.toml index b5bd2195..8ceefb78 100644 --- a/crates/core/coalesced/Cargo.toml +++ b/crates/core/coalesced/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-coalesced" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "MIT" authors = ["Paul Makles ", "Zomatree "] diff --git a/crates/core/config/Cargo.toml b/crates/core/config/Cargo.toml index 60b9a913..d18e5b8e 100644 --- a/crates/core/config/Cargo.toml +++ b/crates/core/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-config" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "MIT" authors = ["Paul Makles "] @@ -37,4 +37,4 @@ sentry = { version = "0.31.5", optional = true } sentry-anyhow = { version = "0.38.1", optional = true } # Core -revolt-result = { version = "0.9.2", path = "../result", optional = true } +revolt-result = { version = "0.9.3", path = "../result", optional = true } diff --git a/crates/core/database/Cargo.toml b/crates/core/database/Cargo.toml index a3782b8c..de84f88a 100644 --- a/crates/core/database/Cargo.toml +++ b/crates/core/database/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-database" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "AGPL-3.0-or-later" authors = ["Paul Makles "] @@ -25,19 +25,19 @@ default = ["mongodb", "async-std-runtime", "tasks"] [dependencies] # Core -revolt-config = { version = "0.9.2", path = "../config", features = [ +revolt-config = { version = "0.9.3", path = "../config", features = [ "report-macros", ] } -revolt-result = { version = "0.9.2", path = "../result" } -revolt-models = { version = "0.9.2", path = "../models", features = [ +revolt-result = { version = "0.9.3", path = "../result" } +revolt-models = { version = "0.9.3", path = "../models", features = [ "validator", ] } -revolt-presence = { version = "0.9.2", path = "../presence" } -revolt-permissions = { version = "0.9.2", path = "../permissions", features = [ +revolt-presence = { version = "0.9.3", path = "../presence" } +revolt-permissions = { version = "0.9.3", path = "../permissions", features = [ "serde", "bson", ] } -revolt-parser = { version = "0.9.2", path = "../parser" } +revolt-parser = { version = "0.9.3", path = "../parser" } # Utility log = "0.4" diff --git a/crates/core/files/Cargo.toml b/crates/core/files/Cargo.toml index 5a8fad2f..fa9e99d2 100644 --- a/crates/core/files/Cargo.toml +++ b/crates/core/files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-files" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "AGPL-3.0-or-later" authors = ["Paul Makles "] @@ -20,10 +20,10 @@ typenum = "1.17.0" aws-config = "1.5.5" aws-sdk-s3 = { version = "1.46.0", features = ["behavior-version-latest"] } -revolt-config = { version = "0.9.2", path = "../config", features = [ +revolt-config = { version = "0.9.3", path = "../config", features = [ "report-macros", ] } -revolt-result = { version = "0.9.2", path = "../result" } +revolt-result = { version = "0.9.3", path = "../result" } # image processing jxl-oxide = "0.8.1" diff --git a/crates/core/models/Cargo.toml b/crates/core/models/Cargo.toml index eaae7d8f..feda14ce 100644 --- a/crates/core/models/Cargo.toml +++ b/crates/core/models/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-models" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "MIT" authors = ["Paul Makles "] @@ -20,8 +20,8 @@ default = ["serde", "partials", "rocket"] [dependencies] # Core -revolt-config = { version = "0.9.2", path = "../config" } -revolt-permissions = { version = "0.9.2", path = "../permissions" } +revolt-config = { version = "0.9.3", path = "../config" } +revolt-permissions = { version = "0.9.3", path = "../permissions" } # Utility regex = "1.11" diff --git a/crates/core/parser/Cargo.toml b/crates/core/parser/Cargo.toml index fc3e4456..f6cb1940 100644 --- a/crates/core/parser/Cargo.toml +++ b/crates/core/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-parser" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "MIT" authors = ["Zomatree ", "Paul Makles "] diff --git a/crates/core/permissions/Cargo.toml b/crates/core/permissions/Cargo.toml index d12f9d35..26217db6 100644 --- a/crates/core/permissions/Cargo.toml +++ b/crates/core/permissions/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-permissions" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "MIT" authors = ["Paul Makles "] @@ -21,7 +21,7 @@ async-std = { version = "1.8.0", features = ["attributes"] } [dependencies] # Core -revolt-result = { version = "0.9.2", path = "../result" } +revolt-result = { version = "0.9.3", path = "../result" } # Utility auto_ops = "0.3.0" diff --git a/crates/core/presence/Cargo.toml b/crates/core/presence/Cargo.toml index 74455b58..d73b188d 100644 --- a/crates/core/presence/Cargo.toml +++ b/crates/core/presence/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-presence" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "AGPL-3.0-or-later" authors = ["Paul Makles "] @@ -16,7 +16,7 @@ redis-is-patched = [] async-std = { version = "1.8.0", features = ["attributes"] } # Config for loading Redis URI -revolt-config = { version = "0.9.2", path = "../config" } +revolt-config = { version = "0.9.3", path = "../config" } [dependencies] # Utility diff --git a/crates/core/ratelimits/Cargo.toml b/crates/core/ratelimits/Cargo.toml index 1335c8ec..e2302b54 100644 --- a/crates/core/ratelimits/Cargo.toml +++ b/crates/core/ratelimits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-ratelimits" -version = "0.9.2" +version = "0.9.3" edition = "2024" [features] @@ -10,9 +10,9 @@ axum = ["dep:axum", "revolt-database/axum-impl"] default = ["rocket", "axum"] [dependencies] -revolt-database = { version = "0.9.2", path = "../database"} -revolt-result = { version = "0.9.2", path = "../result" } -revolt-config = { version = "0.9.2", path = "../config" } +revolt-database = { version = "0.9.3", path = "../database"} +revolt-result = { version = "0.9.3", path = "../result" } +revolt-config = { version = "0.9.3", path = "../config" } rocket = { version = "0.5.1", optional = true } revolt_rocket_okapi = { version = "0.10.0", optional = true } diff --git a/crates/core/result/Cargo.toml b/crates/core/result/Cargo.toml index a6f2ae32..3c29470d 100644 --- a/crates/core/result/Cargo.toml +++ b/crates/core/result/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-result" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "MIT" authors = ["Paul Makles "] diff --git a/crates/daemons/crond/Cargo.toml b/crates/daemons/crond/Cargo.toml index 3673cd6b..04560126 100644 --- a/crates/daemons/crond/Cargo.toml +++ b/crates/daemons/crond/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-crond" -version = "0.9.2" +version = "0.9.3" license = "AGPL-3.0-or-later" authors = ["Paul Makles "] edition = "2021" @@ -17,7 +17,7 @@ log = "0.4" tokio = { version = "1" } # Core -revolt-database = { version = "0.9.2", path = "../../core/database" } -revolt-result = { version = "0.9.2", path = "../../core/result" } -revolt-config = { version = "0.9.2", path = "../../core/config" } -revolt-files = { version = "0.9.2", path = "../../core/files" } +revolt-database = { version = "0.9.3", path = "../../core/database" } +revolt-result = { version = "0.9.3", path = "../../core/result" } +revolt-config = { version = "0.9.3", path = "../../core/config" } +revolt-files = { version = "0.9.3", path = "../../core/files" } diff --git a/crates/daemons/pushd/Cargo.toml b/crates/daemons/pushd/Cargo.toml index 7b17ae7e..abe74a5c 100644 --- a/crates/daemons/pushd/Cargo.toml +++ b/crates/daemons/pushd/Cargo.toml @@ -1,21 +1,21 @@ [package] name = "revolt-pushd" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "AGPL-3.0-or-later" publish = false [dependencies] -revolt-result = { version = "0.9.2", path = "../../core/result" } -revolt-config = { version = "0.9.2", path = "../../core/config", features = [ +revolt-result = { version = "0.9.3", path = "../../core/result" } +revolt-config = { version = "0.9.3", path = "../../core/config", features = [ "report-macros", "anyhow" ] } -revolt-database = { version = "0.9.2", path = "../../core/database" } -revolt-models = { version = "0.9.2", path = "../../core/models", features = [ +revolt-database = { version = "0.9.3", path = "../../core/database" } +revolt-models = { version = "0.9.3", path = "../../core/models", features = [ "validator", ] } -revolt-presence = { version = "0.9.2", path = "../../core/presence", features = [ +revolt-presence = { version = "0.9.3", path = "../../core/presence", features = [ "redis-is-patched", ] } diff --git a/crates/daemons/voice-ingress/Cargo.toml b/crates/daemons/voice-ingress/Cargo.toml index 82ee3a3c..06b30cf9 100644 --- a/crates/daemons/voice-ingress/Cargo.toml +++ b/crates/daemons/voice-ingress/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-voice-ingress" -version = "0.9.2" +version = "0.9.3" license = "AGPL-3.0-or-later" edition = "2021" publish = false diff --git a/crates/delta/Cargo.toml b/crates/delta/Cargo.toml index 5457ab3e..5057d315 100644 --- a/crates/delta/Cargo.toml +++ b/crates/delta/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-delta" -version = "0.9.2" +version = "0.9.3" license = "AGPL-3.0-or-later" authors = ["Paul Makles "] edition = "2018" diff --git a/crates/services/autumn/Cargo.toml b/crates/services/autumn/Cargo.toml index 5ffdb808..d082b6d0 100644 --- a/crates/services/autumn/Cargo.toml +++ b/crates/services/autumn/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-autumn" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "AGPL-3.0-or-later" publish = false @@ -44,16 +44,16 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # Core crates -revolt-files = { version = "0.9.2", path = "../../core/files" } -revolt-config = { version = "0.9.2", path = "../../core/config" } -revolt-database = { version = "0.9.2", path = "../../core/database", features = [ +revolt-files = { version = "0.9.3", path = "../../core/files" } +revolt-config = { version = "0.9.3", path = "../../core/config" } +revolt-database = { version = "0.9.3", path = "../../core/database", features = [ "axum-impl", ] } -revolt-result = { version = "0.9.2", path = "../../core/result", features = [ +revolt-result = { version = "0.9.3", path = "../../core/result", features = [ "utoipa", "axum", ] } -revolt-ratelimits = { version = "0.9.2", path = "../../core/ratelimits", features = ["axum"] } +revolt-ratelimits = { version = "0.9.3", path = "../../core/ratelimits", features = ["axum"] } # Axum / web server tempfile = "3.12.0" diff --git a/crates/services/gifbox/Cargo.toml b/crates/services/gifbox/Cargo.toml index 9f7f6f3c..0684fcbd 100644 --- a/crates/services/gifbox/Cargo.toml +++ b/crates/services/gifbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-gifbox" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "AGPL-3.0-or-later" publish = false @@ -17,19 +17,19 @@ tokio = { version = "1.0", features = ["full"] } reqwest = { version = "0.12", features = ["json"] } # Core crates -revolt-config = { version = "0.9.2", path = "../../core/config" } -revolt-models = { version = "0.9.2", path = "../../core/models" } -revolt-result = { version = "0.9.2", path = "../../core/result", features = [ +revolt-config = { version = "0.9.3", path = "../../core/config" } +revolt-models = { version = "0.9.3", path = "../../core/models" } +revolt-result = { version = "0.9.3", path = "../../core/result", features = [ "utoipa", "axum", ] } -revolt-coalesced = { version = "0.9.2", path = "../../core/coalesced", features = [ +revolt-coalesced = { version = "0.9.3", path = "../../core/coalesced", features = [ "queue", ] } -revolt-database = { version = "0.9.2", path = "../../core/database", features = [ +revolt-database = { version = "0.9.3", path = "../../core/database", features = [ "axum-impl", ] } -revolt-ratelimits = { version = "0.9.2", path = "../../core/ratelimits", features = [ +revolt-ratelimits = { version = "0.9.3", path = "../../core/ratelimits", features = [ "axum", ] } diff --git a/crates/services/january/Cargo.toml b/crates/services/january/Cargo.toml index b63b5434..f12ba6b8 100644 --- a/crates/services/january/Cargo.toml +++ b/crates/services/january/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-january" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "AGPL-3.0-or-later" publish = false @@ -33,13 +33,13 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # Core crates -revolt-config = { version = "0.9.2", path = "../../core/config" } -revolt-models = { version = "0.9.2", path = "../../core/models" } -revolt-result = { version = "0.9.2", path = "../../core/result", features = [ +revolt-config = { version = "0.9.3", path = "../../core/config" } +revolt-models = { version = "0.9.3", path = "../../core/models" } +revolt-result = { version = "0.9.3", path = "../../core/result", features = [ "utoipa", "axum", ] } -revolt-files = { version = "0.9.2", path = "../../core/files" } +revolt-files = { version = "0.9.3", path = "../../core/files" } # Axum / web server axum = { version = "0.7.5" } diff --git a/version.txt b/version.txt index 2003b639..965065db 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.9.2 +0.9.3