Skip to content

Commit 5904813

Browse files
committed
chore: Release
1 parent 6c66844 commit 5904813

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

Cargo.lock

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

bevy_matchbox/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_matchbox"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = [
55
"Johan Helsing <[email protected]>",
66
"Garry O'Donnell <[email protected]",
@@ -32,11 +32,11 @@ signaling = [
3232
bevy = { version = "0.17", default-features = false, features = [
3333
"async_executor",
3434
] }
35-
matchbox_socket = { version = "0.12", path = "../matchbox_socket" }
35+
matchbox_socket = { version = "0.13", path = "../matchbox_socket" }
3636
cfg-if = "1.0"
3737

3838
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
39-
matchbox_signaling = { version = "0.12", path = "../matchbox_signaling", optional = true }
39+
matchbox_signaling = { version = "0.13", path = "../matchbox_signaling", optional = true }
4040
async-compat = { version = "0.2", optional = true }
4141

4242
[dev-dependencies]

matchbox_protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "matchbox_protocol"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = [
55
"Johan Helsing <[email protected]>",
66
"Spencer C. Imbleau <[email protected]>",

matchbox_server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "matchbox_server"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["Johan Helsing <[email protected]>"]
55
edition = "2024"
66
description = "A signaling server for WebRTC peer-to-peer full-mesh networking"
@@ -17,8 +17,8 @@ homepage = "https://github.com/johanhelsing/matchbox"
1717
readme = "../README.md"
1818

1919
[dependencies]
20-
matchbox_signaling = { version = "0.12", path = "../matchbox_signaling" }
21-
matchbox_protocol = { version = "0.12", path = "../matchbox_protocol", features = [
20+
matchbox_signaling = { version = "0.13", path = "../matchbox_signaling" }
21+
matchbox_protocol = { version = "0.13", path = "../matchbox_protocol", features = [
2222
"json",
2323
] }
2424
async-trait = "0.1"

matchbox_signaling/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "matchbox_signaling"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = [
55
"Johan Helsing <[email protected]>",
66
"Spencer C. Imbleau <[email protected]>",
@@ -18,7 +18,7 @@ categories = [
1818
repository = "https://github.com/johanhelsing/matchbox"
1919

2020
[dependencies]
21-
matchbox_protocol = { version = "0.12", path = "../matchbox_protocol", features = [
21+
matchbox_protocol = { version = "0.13", path = "../matchbox_protocol", features = [
2222
"json",
2323
] }
2424
axum = { version = "0.8", features = ["ws"] }

matchbox_socket/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "matchbox_socket"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["Johan Helsing <[email protected]>"]
55
description = "Painless WebRTC peer-to-peer full-mesh networking socket"
66
edition = "2024"
@@ -18,7 +18,7 @@ repository = "https://github.com/johanhelsing/matchbox"
1818
ggrs = ["dep:bincode", "dep:ggrs"]
1919

2020
[dependencies]
21-
matchbox_protocol = { version = "0.12", path = "../matchbox_protocol", default-features = false }
21+
matchbox_protocol = { version = "0.13", path = "../matchbox_protocol", default-features = false }
2222
futures-channel = { version = "0.3", default-features = false, features = [
2323
"sink",
2424
] }

0 commit comments

Comments
 (0)