Skip to content

Commit

Permalink
chore: bump version to 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
insertish committed May 16, 2024
1 parent 19e72ba commit c59aad4
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 25 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

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.1"
version = "0.7.2"
license = "AGPL-3.0-or-later"
edition = "2021"

Expand Down Expand Up @@ -38,7 +38,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.1", path = "../core/permissions" }
revolt-permissions = { version = "0.7.2", 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.1"
version = "0.7.2"
edition = "2021"
license = "AGPL-3.0-or-later"
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.1"
version = "0.7.2"
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.1", path = "../config" }
revolt-result = { version = "0.7.1", path = "../result" }
revolt-models = { version = "0.7.1", path = "../models", features = [
revolt-config = { version = "0.7.2", path = "../config" }
revolt-result = { version = "0.7.2", path = "../result" }
revolt-models = { version = "0.7.2", path = "../models", features = [
"validator",
] }
revolt-presence = { version = "0.7.1", path = "../presence" }
revolt-permissions = { version = "0.7.1", path = "../permissions", features = [
revolt-presence = { version = "0.7.2", path = "../presence" }
revolt-permissions = { version = "0.7.2", path = "../permissions", features = [
"serde",
"bson",
] }
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.1"
version = "0.7.2"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = ["Paul Makles <[email protected]>"]
Expand All @@ -19,8 +19,8 @@ default = ["serde", "partials", "rocket"]

[dependencies]
# Core
revolt-config = { version = "0.7.1", path = "../config" }
revolt-permissions = { version = "0.7.1", path = "../permissions" }
revolt-config = { version = "0.7.2", path = "../config" }
revolt-permissions = { version = "0.7.2", 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.1"
version = "0.7.2"
edition = "2021"
license = "AGPL-3.0-or-later"
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.1", path = "../result" }
revolt-result = { version = "0.7.2", 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.1"
version = "0.7.2"
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.1"
version = "0.7.2"
edition = "2021"
license = "AGPL-3.0-or-later"
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.1"
version = "0.7.2"
license = "AGPL-3.0-or-later"
authors = ["Paul Makles <[email protected]>"]
edition = "2018"
Expand Down

0 comments on commit c59aad4

Please sign in to comment.