Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
johanhelsing committed Mar 9, 2024
1 parent 70506d6 commit 0c128c0
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 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 bevy_matchbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_matchbox"
version = "0.8.0"
version = "0.9.0"
authors = [
"Johan Helsing <[email protected]>",
"Garry O'Donnell <[email protected]",
Expand Down Expand Up @@ -30,11 +30,11 @@ signaling = [

[dependencies]
bevy = { version = "0.13", default-features = false }
matchbox_socket = { version = "0.8", path = "../matchbox_socket" }
matchbox_socket = { version = "0.9", path = "../matchbox_socket" }
cfg-if = "1.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
matchbox_signaling = { version = "0.8", path = "../matchbox_signaling", optional = true }
matchbox_signaling = { version = "0.9", path = "../matchbox_signaling", optional = true }
async-compat = { version = "0.2", optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion matchbox_protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "matchbox_protocol"
version = "0.8.0"
version = "0.9.0"
authors = [
"Johan Helsing <[email protected]>",
"Spencer C. Imbleau <[email protected]>",
Expand Down
6 changes: 3 additions & 3 deletions matchbox_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "matchbox_server"
version = "0.8.0"
version = "0.9.0"
authors = ["Johan Helsing <[email protected]>"]
edition = "2021"
description = "A signaling server for WebRTC peer-to-peer full-mesh networking"
Expand All @@ -17,8 +17,8 @@ homepage = "https://github.com/johanhelsing/matchbox"
readme = "../README.md"

[dependencies]
matchbox_signaling = { version = "0.8", path = "../matchbox_signaling" }
matchbox_protocol = { version = "0.8", path = "../matchbox_protocol", features = [
matchbox_signaling = { version = "0.9", path = "../matchbox_signaling" }
matchbox_protocol = { version = "0.9", path = "../matchbox_protocol", features = [
"json",
] }
async-trait = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions matchbox_signaling/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "matchbox_signaling"
version = "0.8.0"
version = "0.9.0"
authors = [
"Johan Helsing <[email protected]>",
"Spencer C. Imbleau <[email protected]>",
Expand All @@ -18,7 +18,7 @@ categories = [
repository = "https://github.com/johanhelsing/matchbox"

[dependencies]
matchbox_protocol = { version = "0.8", path = "../matchbox_protocol", features = [
matchbox_protocol = { version = "0.9", path = "../matchbox_protocol", features = [
"json",
] }
axum = { version = "0.6", features = ["ws"] }
Expand Down
4 changes: 2 additions & 2 deletions matchbox_socket/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "matchbox_socket"
version = "0.8.1"
version = "0.9.0"
authors = ["Johan Helsing <[email protected]>"]
description = "Painless WebRTC peer-to-peer full-mesh networking socket"
edition = "2021"
Expand All @@ -18,7 +18,7 @@ repository = "https://github.com/johanhelsing/matchbox"
ggrs = ["dep:bincode", "dep:ggrs"]

[dependencies]
matchbox_protocol = { version = "0.8", path = "../matchbox_protocol", default-features = false }
matchbox_protocol = { version = "0.9", path = "../matchbox_protocol", default-features = false }
futures-channel = { version = "0.3", default-features = false, features = [
"sink",
] }
Expand Down

0 comments on commit 0c128c0

Please sign in to comment.