Skip to content

Commit df07426

Browse files
committed
chore: bump version to 0.7.19
1 parent c30d9a2 commit df07426

File tree

13 files changed

+47
-47
lines changed

13 files changed

+47
-47
lines changed

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/bindings/node/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revolt-nodejs-bindings"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
description = "Node.js bindings for the Revolt software"
55
authors = ["Paul Makles <me@insrt.uk>"]
66
license = "MIT"
@@ -20,6 +20,6 @@ serde = { version = "1", features = ["derive"] }
2020

2121
async-std = "1.12.0"
2222

23-
revolt-config = { version = "0.7.18", path = "../../core/config" }
24-
revolt-result = { version = "0.7.18", path = "../../core/result" }
25-
revolt-database = { version = "0.7.18", path = "../../core/database" }
23+
revolt-config = { version = "0.7.19", path = "../../core/config" }
24+
revolt-result = { version = "0.7.19", path = "../../core/result" }
25+
revolt-database = { version = "0.7.19", path = "../../core/database" }

crates/bonfire/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revolt-bonfire"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
license = "AGPL-3.0-or-later"
55
edition = "2021"
66

@@ -41,7 +41,7 @@ revolt-result = { path = "../core/result" }
4141
revolt-models = { path = "../core/models" }
4242
revolt-config = { path = "../core/config" }
4343
revolt-database = { path = "../core/database" }
44-
revolt-permissions = { version = "0.7.18", path = "../core/permissions" }
44+
revolt-permissions = { version = "0.7.19", path = "../core/permissions" }
4545
revolt-presence = { path = "../core/presence", features = ["redis-is-patched"] }
4646

4747
# redis

crates/core/config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revolt-config"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
edition = "2021"
55
license = "MIT"
66
authors = ["Paul Makles <me@insrt.uk>"]
@@ -35,4 +35,4 @@ pretty_env_logger = "0.4.0"
3535
sentry = "0.31.5"
3636

3737
# Core
38-
revolt-result = { version = "0.7.18", path = "../result", optional = true }
38+
revolt-result = { version = "0.7.19", path = "../result", optional = true }

crates/core/database/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revolt-database"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
edition = "2021"
55
license = "AGPL-3.0-or-later"
66
authors = ["Paul Makles <me@insrt.uk>"]
@@ -24,15 +24,15 @@ default = ["mongodb", "async-std-runtime", "tasks"]
2424

2525
[dependencies]
2626
# Core
27-
revolt-config = { version = "0.7.18", path = "../config", features = [
27+
revolt-config = { version = "0.7.19", path = "../config", features = [
2828
"report-macros",
2929
] }
30-
revolt-result = { version = "0.7.18", path = "../result" }
31-
revolt-models = { version = "0.7.18", path = "../models", features = [
30+
revolt-result = { version = "0.7.19", path = "../result" }
31+
revolt-models = { version = "0.7.19", path = "../models", features = [
3232
"validator",
3333
] }
34-
revolt-presence = { version = "0.7.18", path = "../presence" }
35-
revolt-permissions = { version = "0.7.18", path = "../permissions", features = [
34+
revolt-presence = { version = "0.7.19", path = "../presence" }
35+
revolt-permissions = { version = "0.7.19", path = "../permissions", features = [
3636
"serde",
3737
"bson",
3838
] }

crates/core/files/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revolt-files"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
edition = "2021"
55
license = "AGPL-3.0-or-later"
66
authors = ["Paul Makles <me@insrt.uk>"]
@@ -20,10 +20,10 @@ typenum = "1.17.0"
2020
aws-config = "1.5.5"
2121
aws-sdk-s3 = { version = "1.46.0", features = ["behavior-version-latest"] }
2222

23-
revolt-config = { version = "0.7.18", path = "../config", features = [
23+
revolt-config = { version = "0.7.19", path = "../config", features = [
2424
"report-macros",
2525
] }
26-
revolt-result = { version = "0.7.18", path = "../result" }
26+
revolt-result = { version = "0.7.19", path = "../result" }
2727

2828
# image processing
2929
jxl-oxide = "0.8.1"

crates/core/models/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revolt-models"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
edition = "2021"
55
license = "MIT"
66
authors = ["Paul Makles <me@insrt.uk>"]
@@ -20,8 +20,8 @@ default = ["serde", "partials", "rocket"]
2020

2121
[dependencies]
2222
# Core
23-
revolt-config = { version = "0.7.18", path = "../config" }
24-
revolt-permissions = { version = "0.7.18", path = "../permissions" }
23+
revolt-config = { version = "0.7.19", path = "../config" }
24+
revolt-permissions = { version = "0.7.19", path = "../permissions" }
2525

2626
# Utility
2727
regex = "1"

crates/core/permissions/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revolt-permissions"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
edition = "2021"
55
license = "MIT"
66
authors = ["Paul Makles <me@insrt.uk>"]
@@ -21,7 +21,7 @@ async-std = { version = "1.8.0", features = ["attributes"] }
2121

2222
[dependencies]
2323
# Core
24-
revolt-result = { version = "0.7.18", path = "../result" }
24+
revolt-result = { version = "0.7.19", path = "../result" }
2525

2626
# Utility
2727
auto_ops = "0.3.0"

crates/core/presence/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revolt-presence"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
edition = "2021"
55
license = "AGPL-3.0-or-later"
66
authors = ["Paul Makles <me@insrt.uk>"]

crates/core/result/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revolt-result"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
edition = "2021"
55
license = "MIT"
66
authors = ["Paul Makles <me@insrt.uk>"]

crates/delta/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revolt-delta"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
license = "AGPL-3.0-or-later"
55
authors = ["Paul Makles <paulmakles@gmail.com>"]
66
edition = "2018"

crates/services/autumn/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revolt-autumn"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
edition = "2021"
55

66
[dependencies]
@@ -42,12 +42,12 @@ tracing = "0.1"
4242
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
4343

4444
# Core crates
45-
revolt-files = { version = "0.7.18", path = "../../core/files" }
46-
revolt-config = { version = "0.7.18", path = "../../core/config" }
47-
revolt-database = { version = "0.7.18", path = "../../core/database", features = [
45+
revolt-files = { version = "0.7.19", path = "../../core/files" }
46+
revolt-config = { version = "0.7.19", path = "../../core/config" }
47+
revolt-database = { version = "0.7.19", path = "../../core/database", features = [
4848
"axum-impl",
4949
] }
50-
revolt-result = { version = "0.7.18", path = "../../core/result", features = [
50+
revolt-result = { version = "0.7.19", path = "../../core/result", features = [
5151
"utoipa",
5252
"axum",
5353
] }

crates/services/january/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revolt-january"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
edition = "2021"
55

66
[dependencies]
@@ -31,13 +31,13 @@ tracing = "0.1"
3131
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
3232

3333
# Core crates
34-
revolt-config = { version = "0.7.18", path = "../../core/config" }
35-
revolt-models = { version = "0.7.18", path = "../../core/models" }
36-
revolt-result = { version = "0.7.18", path = "../../core/result", features = [
34+
revolt-config = { version = "0.7.19", path = "../../core/config" }
35+
revolt-models = { version = "0.7.19", path = "../../core/models" }
36+
revolt-result = { version = "0.7.19", path = "../../core/result", features = [
3737
"utoipa",
3838
"axum",
3939
] }
40-
revolt-files = { version = "0.7.18", path = "../../core/files" }
40+
revolt-files = { version = "0.7.19", path = "../../core/files" }
4141

4242
# Axum / web server
4343
axum = { version = "0.7.5" }

0 commit comments

Comments
 (0)