chore: bump version to 0.8.2

This commit is contained in:
Paul Makles
2025-02-10 18:37:21 +00:00
parent 5f39403ce7
commit a1e6a19210
14 changed files with 52 additions and 52 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "revolt-nodejs-bindings"
version = "0.8.1"
version = "0.8.2"
description = "Node.js bindings for the Revolt software"
authors = ["Paul Makles <me@insrt.uk>"]
license = "MIT"
@@ -20,6 +20,6 @@ serde = { version = "1", features = ["derive"] }
async-std = "1.12.0"
revolt-config = { version = "0.8.1", path = "../../core/config" }
revolt-result = { version = "0.8.1", path = "../../core/result" }
revolt-database = { version = "0.8.1", path = "../../core/database" }
revolt-config = { version = "0.8.2", path = "../../core/config" }
revolt-result = { version = "0.8.2", path = "../../core/result" }
revolt-database = { version = "0.8.2", path = "../../core/database" }

View File

@@ -1,6 +1,6 @@
[package]
name = "revolt-bonfire"
version = "0.8.1"
version = "0.8.2"
license = "AGPL-3.0-or-later"
edition = "2021"
@@ -41,7 +41,7 @@ revolt-result = { path = "../core/result" }
revolt-models = { path = "../core/models" }
revolt-config = { path = "../core/config" }
revolt-database = { path = "../core/database" }
revolt-permissions = { version = "0.8.1", path = "../core/permissions" }
revolt-permissions = { version = "0.8.2", path = "../core/permissions" }
revolt-presence = { path = "../core/presence", features = ["redis-is-patched"] }
# redis

View File

@@ -1,6 +1,6 @@
[package]
name = "revolt-config"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "MIT"
authors = ["Paul Makles <me@insrt.uk>"]
@@ -34,4 +34,4 @@ pretty_env_logger = "0.4.0"
sentry = "0.31.5"
# Core
revolt-result = { version = "0.8.1", path = "../result", optional = true }
revolt-result = { version = "0.8.2", path = "../result", optional = true }

View File

@@ -1,6 +1,6 @@
[package]
name = "revolt-database"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = ["Paul Makles <me@insrt.uk>"]
@@ -24,15 +24,15 @@ default = ["mongodb", "async-std-runtime", "tasks"]
[dependencies]
# Core
revolt-config = { version = "0.8.1", path = "../config", features = [
revolt-config = { version = "0.8.2", path = "../config", features = [
"report-macros",
] }
revolt-result = { version = "0.8.1", path = "../result" }
revolt-models = { version = "0.8.1", path = "../models", features = [
revolt-result = { version = "0.8.2", path = "../result" }
revolt-models = { version = "0.8.2", path = "../models", features = [
"validator",
] }
revolt-presence = { version = "0.8.1", path = "../presence" }
revolt-permissions = { version = "0.8.1", path = "../permissions", features = [
revolt-presence = { version = "0.8.2", path = "../presence" }
revolt-permissions = { version = "0.8.2", path = "../permissions", features = [
"serde",
"bson",
] }

View File

@@ -1,6 +1,6 @@
[package]
name = "revolt-files"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = ["Paul Makles <me@insrt.uk>"]
@@ -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.8.1", path = "../config", features = [
revolt-config = { version = "0.8.2", path = "../config", features = [
"report-macros",
] }
revolt-result = { version = "0.8.1", path = "../result" }
revolt-result = { version = "0.8.2", path = "../result" }
# image processing
jxl-oxide = "0.8.1"

View File

@@ -1,6 +1,6 @@
[package]
name = "revolt-models"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "MIT"
authors = ["Paul Makles <me@insrt.uk>"]
@@ -20,8 +20,8 @@ default = ["serde", "partials", "rocket"]
[dependencies]
# Core
revolt-config = { version = "0.8.1", path = "../config" }
revolt-permissions = { version = "0.8.1", path = "../permissions" }
revolt-config = { version = "0.8.2", path = "../config" }
revolt-permissions = { version = "0.8.2", path = "../permissions" }
# Utility
regex = "1"

View File

@@ -1,6 +1,6 @@
[package]
name = "revolt-permissions"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "MIT"
authors = ["Paul Makles <me@insrt.uk>"]
@@ -21,7 +21,7 @@ async-std = { version = "1.8.0", features = ["attributes"] }
[dependencies]
# Core
revolt-result = { version = "0.8.1", path = "../result" }
revolt-result = { version = "0.8.2", path = "../result" }
# Utility
auto_ops = "0.3.0"

View File

@@ -1,6 +1,6 @@
[package]
name = "revolt-presence"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = ["Paul Makles <me@insrt.uk>"]

View File

@@ -1,6 +1,6 @@
[package]
name = "revolt-result"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "MIT"
authors = ["Paul Makles <me@insrt.uk>"]

View File

@@ -1,12 +1,12 @@
[package]
name = "revolt-pushd"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
[dependencies]
revolt-config = { version = "0.8.1", path = "../../core/config" }
revolt-database = { version = "0.8.1", path = "../../core/database" }
revolt-models = { version = "0.8.1", path = "../../core/models", features = [
revolt-config = { version = "0.8.2", path = "../../core/config" }
revolt-database = { version = "0.8.2", path = "../../core/database" }
revolt-models = { version = "0.8.2", path = "../../core/models", features = [
"validator",
] }

View File

@@ -1,6 +1,6 @@
[package]
name = "revolt-delta"
version = "0.8.1"
version = "0.8.2"
license = "AGPL-3.0-or-later"
authors = ["Paul Makles <paulmakles@gmail.com>"]
edition = "2018"

View File

@@ -1,6 +1,6 @@
[package]
name = "revolt-autumn"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
[dependencies]
@@ -42,12 +42,12 @@ tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Core crates
revolt-files = { version = "0.8.1", path = "../../core/files" }
revolt-config = { version = "0.8.1", path = "../../core/config" }
revolt-database = { version = "0.8.1", path = "../../core/database", features = [
revolt-files = { version = "0.8.2", path = "../../core/files" }
revolt-config = { version = "0.8.2", path = "../../core/config" }
revolt-database = { version = "0.8.2", path = "../../core/database", features = [
"axum-impl",
] }
revolt-result = { version = "0.8.1", path = "../../core/result", features = [
revolt-result = { version = "0.8.2", path = "../../core/result", features = [
"utoipa",
"axum",
] }

View File

@@ -1,6 +1,6 @@
[package]
name = "revolt-january"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
[dependencies]
@@ -31,13 +31,13 @@ tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Core crates
revolt-config = { version = "0.8.1", path = "../../core/config" }
revolt-models = { version = "0.8.1", path = "../../core/models" }
revolt-result = { version = "0.8.1", path = "../../core/result", features = [
revolt-config = { version = "0.8.2", path = "../../core/config" }
revolt-models = { version = "0.8.2", path = "../../core/models" }
revolt-result = { version = "0.8.2", path = "../../core/result", features = [
"utoipa",
"axum",
] }
revolt-files = { version = "0.8.1", path = "../../core/files" }
revolt-files = { version = "0.8.2", path = "../../core/files" }
# Axum / web server
axum = { version = "0.7.5" }