Skip to content

Commit

Permalink
chore: bump version to 0.7.16
Browse files Browse the repository at this point in the history
  • Loading branch information
insertish committed Aug 29, 2024
1 parent 1938ebc commit 2896097
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 34 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions crates/bindings/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "revolt-nodejs-bindings"
version = "0.7.15"
version = "0.7.16"
description = "Node.js bindings for the Revolt software"
authors = ["Paul Makles <[email protected]>"]
license = "MIT"
Expand All @@ -20,5 +20,5 @@ serde = { version = "1", features = ["derive"] }

async-std = "1.12.0"

revolt-result = { version = "0.7.15", path = "../../core/result" }
revolt-database = { version = "0.7.15", path = "../../core/database" }
revolt-result = { version = "0.7.16", path = "../../core/result" }
revolt-database = { version = "0.7.16", path = "../../core/database" }
4 changes: 2 additions & 2 deletions crates/bonfire/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "revolt-bonfire"
version = "0.7.15"
version = "0.7.16"
license = "AGPL-3.0-or-later"
edition = "2021"

Expand Down Expand Up @@ -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.7.15", path = "../core/permissions" }
revolt-permissions = { version = "0.7.16", path = "../core/permissions" }
revolt-presence = { path = "../core/presence", features = ["redis-is-patched"] }

# redis
Expand Down
2 changes: 1 addition & 1 deletion crates/core/config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "revolt-config"
version = "0.7.15"
version = "0.7.16"
edition = "2021"
license = "MIT"
authors = ["Paul Makles <[email protected]>"]
Expand Down
12 changes: 6 additions & 6 deletions crates/core/database/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "revolt-database"
version = "0.7.15"
version = "0.7.16"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = ["Paul Makles <[email protected]>"]
Expand All @@ -23,13 +23,13 @@ default = ["mongodb", "async-std-runtime", "tasks"]

[dependencies]
# Core
revolt-config = { version = "0.7.15", path = "../config" }
revolt-result = { version = "0.7.15", path = "../result" }
revolt-models = { version = "0.7.15", path = "../models", features = [
revolt-config = { version = "0.7.16", path = "../config" }
revolt-result = { version = "0.7.16", path = "../result" }
revolt-models = { version = "0.7.16", path = "../models", features = [
"validator",
] }
revolt-presence = { version = "0.7.15", path = "../presence" }
revolt-permissions = { version = "0.7.15", path = "../permissions", features = [
revolt-presence = { version = "0.7.16", path = "../presence" }
revolt-permissions = { version = "0.7.16", path = "../permissions", features = [
"serde",
"bson",
] }
Expand Down
2 changes: 1 addition & 1 deletion crates/core/files/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "revolt-files"
version = "0.1.0"
version = "0.1.1"
edition = "2021"

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/core/models/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "revolt-models"
version = "0.7.15"
version = "0.7.16"
edition = "2021"
license = "MIT"
authors = ["Paul Makles <[email protected]>"]
Expand All @@ -19,8 +19,8 @@ default = ["serde", "partials", "rocket"]

[dependencies]
# Core
revolt-config = { version = "0.7.15", path = "../config" }
revolt-permissions = { version = "0.7.15", path = "../permissions" }
revolt-config = { version = "0.7.16", path = "../config" }
revolt-permissions = { version = "0.7.16", path = "../permissions" }

# Utility
regex = "1"
Expand Down
4 changes: 2 additions & 2 deletions crates/core/permissions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "revolt-permissions"
version = "0.7.15"
version = "0.7.16"
edition = "2021"
license = "MIT"
authors = ["Paul Makles <[email protected]>"]
Expand All @@ -21,7 +21,7 @@ async-std = { version = "1.8.0", features = ["attributes"] }

[dependencies]
# Core
revolt-result = { version = "0.7.15", path = "../result" }
revolt-result = { version = "0.7.16", path = "../result" }

# Utility
auto_ops = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/core/presence/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "revolt-presence"
version = "0.7.15"
version = "0.7.16"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = ["Paul Makles <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/core/result/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "revolt-result"
version = "0.7.15"
version = "0.7.16"
edition = "2021"
license = "MIT"
authors = ["Paul Makles <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/delta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "revolt-delta"
version = "0.7.15"
version = "0.7.16"
license = "AGPL-3.0-or-later"
authors = ["Paul Makles <[email protected]>"]
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions crates/services/autumn/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "revolt-autumn"
version = "0.7.13"
version = "0.7.14"
edition = "2021"

[dependencies]
Expand All @@ -12,7 +12,7 @@ tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

revolt-config = { version = "0.7.13", path = "../../core/config" }
revolt-config = { version = "0.7.16", path = "../../core/config" }

tempfile = "3.12.0"
axum_typed_multipart = "0.12.1"
Expand Down

0 comments on commit 2896097

Please sign in to comment.