mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-08-31 02:22:29 +00:00
chore(main): release 0.15.3
This commit is contained in:
committed by
GitHub
parent
5b696776cb
commit
bc5cef315d
@@ -1,3 +1,3 @@
|
||||
{
|
||||
".": "0.15.2"
|
||||
".": "0.15.3"
|
||||
}
|
||||
10
CHANGELOG.md
10
CHANGELOG.md
@@ -1,5 +1,15 @@
|
||||
# Changelog
|
||||
|
||||
## [0.15.3](https://github.com/stoatchat/stoatchat/compare/v0.15.2...v0.15.3) (2026-08-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* discover errors and Removed field ([#944](https://github.com/stoatchat/stoatchat/issues/944)) ([ee4d998](https://github.com/stoatchat/stoatchat/commit/ee4d9986929def624da7b7bee9fcf383f0beb29c))
|
||||
* Minor fixes for discover routes ([#942](https://github.com/stoatchat/stoatchat/issues/942)) ([509ebbf](https://github.com/stoatchat/stoatchat/commit/509ebbfc1511a2390fe45657f634b183b0bcb573))
|
||||
* propagate NotFound instead of 500, rename fields to their proper values without affecting database insertion ([509ebbf](https://github.com/stoatchat/stoatchat/commit/509ebbfc1511a2390fe45657f634b183b0bcb573))
|
||||
* saturate ratelimits to not cause overflows ([#957](https://github.com/stoatchat/stoatchat/issues/957)) ([5b69677](https://github.com/stoatchat/stoatchat/commit/5b696776cbaf4b2fe8a4f4dc5e87efdb30415a00))
|
||||
|
||||
## [0.15.2](https://github.com/stoatchat/stoatchat/compare/v0.15.1...v0.15.2) (2026-08-24)
|
||||
|
||||
|
||||
|
||||
20
Cargo.toml
20
Cargo.toml
@@ -193,13 +193,13 @@ futures-lite = "2.6.1"
|
||||
vergen = "7.5.0"
|
||||
|
||||
# Local packages
|
||||
revolt-coalesced = { version = "0.15.2", path = "crates/core/coalesced" }
|
||||
revolt-config = { version = "0.15.2", path = "crates/core/config" }
|
||||
revolt-database = { version = "0.15.2", path = "crates/core/database" }
|
||||
revolt-files = { version = "0.15.2", path = "crates/core/files" }
|
||||
revolt-models = { version = "0.15.2", path = "crates/core/models" }
|
||||
revolt-parser = { version = "0.15.2", path = "crates/core/parser" }
|
||||
revolt-permissions = { version = "0.15.2", path = "crates/core/permissions" }
|
||||
revolt-presence = { version = "0.15.2", path = "crates/core/presence" }
|
||||
revolt-ratelimits = { version = "0.15.2", path = "crates/core/ratelimits" }
|
||||
revolt-result = { version = "0.15.2", path = "crates/core/result" }
|
||||
revolt-coalesced = { version = "0.15.3", path = "crates/core/coalesced" }
|
||||
revolt-config = { version = "0.15.3", path = "crates/core/config" }
|
||||
revolt-database = { version = "0.15.3", path = "crates/core/database" }
|
||||
revolt-files = { version = "0.15.3", path = "crates/core/files" }
|
||||
revolt-models = { version = "0.15.3", path = "crates/core/models" }
|
||||
revolt-parser = { version = "0.15.3", path = "crates/core/parser" }
|
||||
revolt-permissions = { version = "0.15.3", path = "crates/core/permissions" }
|
||||
revolt-presence = { version = "0.15.3", path = "crates/core/presence" }
|
||||
revolt-ratelimits = { version = "0.15.3", path = "crates/core/ratelimits" }
|
||||
revolt-result = { version = "0.15.3", path = "crates/core/result" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-bonfire"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
license = "AGPL-3.0-or-later"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-coalesced"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
authors = ["Paul Makles <me@insrt.uk>", "Zomatree <me@zomatree.live>"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-config"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
authors = ["Paul Makles <me@insrt.uk>"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-database"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "AGPL-3.0-or-later"
|
||||
authors = ["Paul Makles <me@insrt.uk>"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-files"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "AGPL-3.0-or-later"
|
||||
authors = ["Paul Makles <me@insrt.uk>"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-models"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
authors = ["Paul Makles <me@insrt.uk>"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-parser"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
authors = ["Zomatree <me@zomatree.live>", "Paul Makles <me@insrt.uk>"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-permissions"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
authors = ["Paul Makles <me@insrt.uk>"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-presence"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "AGPL-3.0-or-later"
|
||||
authors = ["Paul Makles <me@insrt.uk>"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-ratelimits"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2024"
|
||||
license = "MIT"
|
||||
authors = ["Zomatree <me@zomatree.live>", "Paul Makles <me@insrt.uk>"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-result"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
authors = ["Paul Makles <me@insrt.uk>"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-crond"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
license = "AGPL-3.0-or-later"
|
||||
authors = ["Paul Makles <me@insrt.uk>"]
|
||||
edition = "2021"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-pushd"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "AGPL-3.0-or-later"
|
||||
publish = false
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-voice-ingress"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
license = "AGPL-3.0-or-later"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-delta"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
license = "AGPL-3.0-or-later"
|
||||
authors = ["Paul Makles <paulmakles@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-autumn"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "AGPL-3.0-or-later"
|
||||
publish = false
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-gifbox"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "AGPL-3.0-or-later"
|
||||
publish = false
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "revolt-january"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
license = "AGPL-3.0-or-later"
|
||||
publish = false
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.15.2
|
||||
0.15.3
|
||||
|
||||
Reference in New Issue
Block a user