diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 97dd7ac8..19735b03 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.1" + ".": "0.9.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index e1beff20..4c7466e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.9.2](https://github.com/stoatchat/stoatchat/compare/v0.9.1...v0.9.2) (2026-01-10) + + +### Bug Fixes + +* disable publish for services ([#485](https://github.com/stoatchat/stoatchat/issues/485)) ([d13609c](https://github.com/stoatchat/stoatchat/commit/d13609c37279d6a40445dcd99564e5c3dd03bac1)) + ## [0.9.1](https://github.com/stoatchat/stoatchat/compare/v0.9.0...v0.9.1) (2026-01-10) diff --git a/crates/bonfire/Cargo.toml b/crates/bonfire/Cargo.toml index 8f3a18c1..cea3987a 100644 --- a/crates/bonfire/Cargo.toml +++ b/crates/bonfire/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-bonfire" -version = "0.9.1" +version = "0.9.2" 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 0fc6dd0f..70d249bd 100644 --- a/crates/core/coalesced/Cargo.toml +++ b/crates/core/coalesced/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-coalesced" -version = "0.9.1" +version = "0.9.2" edition = "2021" license = "MIT" authors = ["Paul Makles ", "Zomatree "] diff --git a/crates/core/config/Cargo.toml b/crates/core/config/Cargo.toml index 81d2cac6..60b9a913 100644 --- a/crates/core/config/Cargo.toml +++ b/crates/core/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-config" -version = "0.9.1" +version = "0.9.2" 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.1", path = "../result", optional = true } +revolt-result = { version = "0.9.2", path = "../result", optional = true } diff --git a/crates/core/database/Cargo.toml b/crates/core/database/Cargo.toml index 19519bc3..a3782b8c 100644 --- a/crates/core/database/Cargo.toml +++ b/crates/core/database/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-database" -version = "0.9.1" +version = "0.9.2" 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.1", path = "../config", features = [ +revolt-config = { version = "0.9.2", path = "../config", features = [ "report-macros", ] } -revolt-result = { version = "0.9.1", path = "../result" } -revolt-models = { version = "0.9.1", path = "../models", features = [ +revolt-result = { version = "0.9.2", path = "../result" } +revolt-models = { version = "0.9.2", path = "../models", features = [ "validator", ] } -revolt-presence = { version = "0.9.1", path = "../presence" } -revolt-permissions = { version = "0.9.1", path = "../permissions", features = [ +revolt-presence = { version = "0.9.2", path = "../presence" } +revolt-permissions = { version = "0.9.2", path = "../permissions", features = [ "serde", "bson", ] } -revolt-parser = { version = "0.9.1", path = "../parser" } +revolt-parser = { version = "0.9.2", path = "../parser" } # Utility log = "0.4" diff --git a/crates/core/files/Cargo.toml b/crates/core/files/Cargo.toml index 27cf6c45..5a8fad2f 100644 --- a/crates/core/files/Cargo.toml +++ b/crates/core/files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-files" -version = "0.9.1" +version = "0.9.2" 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.1", path = "../config", features = [ +revolt-config = { version = "0.9.2", path = "../config", features = [ "report-macros", ] } -revolt-result = { version = "0.9.1", path = "../result" } +revolt-result = { version = "0.9.2", path = "../result" } # image processing jxl-oxide = "0.8.1" diff --git a/crates/core/models/Cargo.toml b/crates/core/models/Cargo.toml index f3e336fc..eaae7d8f 100644 --- a/crates/core/models/Cargo.toml +++ b/crates/core/models/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-models" -version = "0.9.1" +version = "0.9.2" edition = "2021" license = "MIT" authors = ["Paul Makles "] @@ -20,8 +20,8 @@ default = ["serde", "partials", "rocket"] [dependencies] # Core -revolt-config = { version = "0.9.1", path = "../config" } -revolt-permissions = { version = "0.9.1", path = "../permissions" } +revolt-config = { version = "0.9.2", path = "../config" } +revolt-permissions = { version = "0.9.2", path = "../permissions" } # Utility regex = "1.11" diff --git a/crates/core/parser/Cargo.toml b/crates/core/parser/Cargo.toml index dc91165d..fc3e4456 100644 --- a/crates/core/parser/Cargo.toml +++ b/crates/core/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-parser" -version = "0.9.1" +version = "0.9.2" edition = "2021" license = "MIT" authors = ["Zomatree ", "Paul Makles "] diff --git a/crates/core/permissions/Cargo.toml b/crates/core/permissions/Cargo.toml index bf9577a0..d12f9d35 100644 --- a/crates/core/permissions/Cargo.toml +++ b/crates/core/permissions/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-permissions" -version = "0.9.1" +version = "0.9.2" 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.1", path = "../result" } +revolt-result = { version = "0.9.2", path = "../result" } # Utility auto_ops = "0.3.0" diff --git a/crates/core/presence/Cargo.toml b/crates/core/presence/Cargo.toml index 8569dda9..74455b58 100644 --- a/crates/core/presence/Cargo.toml +++ b/crates/core/presence/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-presence" -version = "0.9.1" +version = "0.9.2" 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.1", path = "../config" } +revolt-config = { version = "0.9.2", path = "../config" } [dependencies] # Utility diff --git a/crates/core/ratelimits/Cargo.toml b/crates/core/ratelimits/Cargo.toml index d6eb495d..1335c8ec 100644 --- a/crates/core/ratelimits/Cargo.toml +++ b/crates/core/ratelimits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-ratelimits" -version = "0.9.1" +version = "0.9.2" edition = "2024" [features] @@ -10,9 +10,9 @@ axum = ["dep:axum", "revolt-database/axum-impl"] default = ["rocket", "axum"] [dependencies] -revolt-database = { version = "0.9.1", path = "../database"} -revolt-result = { version = "0.9.1", path = "../result" } -revolt-config = { version = "0.9.1", path = "../config" } +revolt-database = { version = "0.9.2", path = "../database"} +revolt-result = { version = "0.9.2", path = "../result" } +revolt-config = { version = "0.9.2", 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 0b44a0e1..a6f2ae32 100644 --- a/crates/core/result/Cargo.toml +++ b/crates/core/result/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-result" -version = "0.9.1" +version = "0.9.2" edition = "2021" license = "MIT" authors = ["Paul Makles "] diff --git a/crates/daemons/crond/Cargo.toml b/crates/daemons/crond/Cargo.toml index 9a9ea0aa..3673cd6b 100644 --- a/crates/daemons/crond/Cargo.toml +++ b/crates/daemons/crond/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-crond" -version = "0.9.1" +version = "0.9.2" 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.1", path = "../../core/database" } -revolt-result = { version = "0.9.1", path = "../../core/result" } -revolt-config = { version = "0.9.1", path = "../../core/config" } -revolt-files = { version = "0.9.1", path = "../../core/files" } +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" } diff --git a/crates/daemons/pushd/Cargo.toml b/crates/daemons/pushd/Cargo.toml index 600baa3b..7b17ae7e 100644 --- a/crates/daemons/pushd/Cargo.toml +++ b/crates/daemons/pushd/Cargo.toml @@ -1,21 +1,21 @@ [package] name = "revolt-pushd" -version = "0.9.1" +version = "0.9.2" edition = "2021" license = "AGPL-3.0-or-later" publish = false [dependencies] -revolt-result = { version = "0.9.1", path = "../../core/result" } -revolt-config = { version = "0.9.1", path = "../../core/config", features = [ +revolt-result = { version = "0.9.2", path = "../../core/result" } +revolt-config = { version = "0.9.2", path = "../../core/config", features = [ "report-macros", "anyhow" ] } -revolt-database = { version = "0.9.1", path = "../../core/database" } -revolt-models = { version = "0.9.1", path = "../../core/models", features = [ +revolt-database = { version = "0.9.2", path = "../../core/database" } +revolt-models = { version = "0.9.2", path = "../../core/models", features = [ "validator", ] } -revolt-presence = { version = "0.9.1", path = "../../core/presence", features = [ +revolt-presence = { version = "0.9.2", path = "../../core/presence", features = [ "redis-is-patched", ] } diff --git a/crates/daemons/voice-ingress/Cargo.toml b/crates/daemons/voice-ingress/Cargo.toml index 1fa06442..82ee3a3c 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.1" +version = "0.9.2" license = "AGPL-3.0-or-later" edition = "2021" publish = false diff --git a/crates/delta/Cargo.toml b/crates/delta/Cargo.toml index 56160b28..5457ab3e 100644 --- a/crates/delta/Cargo.toml +++ b/crates/delta/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-delta" -version = "0.9.1" +version = "0.9.2" 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 23e42c71..5ffdb808 100644 --- a/crates/services/autumn/Cargo.toml +++ b/crates/services/autumn/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-autumn" -version = "0.9.1" +version = "0.9.2" 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.1", path = "../../core/files" } -revolt-config = { version = "0.9.1", path = "../../core/config" } -revolt-database = { version = "0.9.1", path = "../../core/database", features = [ +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 = [ "axum-impl", ] } -revolt-result = { version = "0.9.1", path = "../../core/result", features = [ +revolt-result = { version = "0.9.2", path = "../../core/result", features = [ "utoipa", "axum", ] } -revolt-ratelimits = { version = "0.9.1", path = "../../core/ratelimits", features = ["axum"] } +revolt-ratelimits = { version = "0.9.2", 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 435430d7..9f7f6f3c 100644 --- a/crates/services/gifbox/Cargo.toml +++ b/crates/services/gifbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-gifbox" -version = "0.9.1" +version = "0.9.2" 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.1", path = "../../core/config" } -revolt-models = { version = "0.9.1", path = "../../core/models" } -revolt-result = { version = "0.9.1", path = "../../core/result", features = [ +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 = [ "utoipa", "axum", ] } -revolt-coalesced = { version = "0.9.1", path = "../../core/coalesced", features = [ +revolt-coalesced = { version = "0.9.2", path = "../../core/coalesced", features = [ "queue", ] } -revolt-database = { version = "0.9.1", path = "../../core/database", features = [ +revolt-database = { version = "0.9.2", path = "../../core/database", features = [ "axum-impl", ] } -revolt-ratelimits = { version = "0.9.1", path = "../../core/ratelimits", features = [ +revolt-ratelimits = { version = "0.9.2", path = "../../core/ratelimits", features = [ "axum", ] } diff --git a/crates/services/january/Cargo.toml b/crates/services/january/Cargo.toml index 08cc5fc0..b63b5434 100644 --- a/crates/services/january/Cargo.toml +++ b/crates/services/january/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt-january" -version = "0.9.1" +version = "0.9.2" 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.1", path = "../../core/config" } -revolt-models = { version = "0.9.1", path = "../../core/models" } -revolt-result = { version = "0.9.1", path = "../../core/result", features = [ +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 = [ "utoipa", "axum", ] } -revolt-files = { version = "0.9.1", path = "../../core/files" } +revolt-files = { version = "0.9.2", path = "../../core/files" } # Axum / web server axum = { version = "0.7.5" } diff --git a/version.txt b/version.txt index f374f666..2003b639 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.9.1 +0.9.2