From 545f6095f8aee4593fb3a64b19d9730585e3bdde Mon Sep 17 00:00:00 2001 From: Johan Klokkhammer Helsing Date: Mon, 15 Jul 2024 08:29:49 +0200 Subject: [PATCH] chore: Release --- Cargo.lock | 10 +++++----- bevy_matchbox/Cargo.toml | 6 +++--- matchbox_protocol/Cargo.toml | 2 +- matchbox_server/Cargo.toml | 6 +++--- matchbox_signaling/Cargo.toml | 4 ++-- matchbox_socket/Cargo.toml | 4 ++-- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ffab5344..3cc30a2c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1068,7 +1068,7 @@ dependencies = [ [[package]] name = "bevy_matchbox" -version = "0.9.0" +version = "0.10.0" dependencies = [ "async-compat", "bevy", @@ -3190,7 +3190,7 @@ dependencies = [ [[package]] name = "matchbox_protocol" -version = "0.9.0" +version = "0.10.0" dependencies = [ "cfg-if", "derive_more", @@ -3201,7 +3201,7 @@ dependencies = [ [[package]] name = "matchbox_server" -version = "0.9.0" +version = "0.10.0" dependencies = [ "async-trait", "axum", @@ -3223,7 +3223,7 @@ dependencies = [ [[package]] name = "matchbox_signaling" -version = "0.9.0" +version = "0.10.0" dependencies = [ "async-trait", "axum", @@ -3244,7 +3244,7 @@ dependencies = [ [[package]] name = "matchbox_socket" -version = "0.9.0" +version = "0.10.0" dependencies = [ "async-compat", "async-trait", diff --git a/bevy_matchbox/Cargo.toml b/bevy_matchbox/Cargo.toml index 1637b1e6..98626f3b 100644 --- a/bevy_matchbox/Cargo.toml +++ b/bevy_matchbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_matchbox" -version = "0.9.0" +version = "0.10.0" authors = [ "Johan Helsing ", "Garry O'Donnell ", "Spencer C. Imbleau ", diff --git a/matchbox_server/Cargo.toml b/matchbox_server/Cargo.toml index 4df24ca1..c2c44607 100644 --- a/matchbox_server/Cargo.toml +++ b/matchbox_server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_server" -version = "0.9.0" +version = "0.10.0" authors = ["Johan Helsing "] edition = "2021" description = "A signaling server for WebRTC peer-to-peer full-mesh networking" @@ -17,8 +17,8 @@ homepage = "https://github.com/johanhelsing/matchbox" readme = "../README.md" [dependencies] -matchbox_signaling = { version = "0.9", path = "../matchbox_signaling" } -matchbox_protocol = { version = "0.9", path = "../matchbox_protocol", features = [ +matchbox_signaling = { version = "0.10", path = "../matchbox_signaling" } +matchbox_protocol = { version = "0.10", path = "../matchbox_protocol", features = [ "json", ] } async-trait = "0.1" diff --git a/matchbox_signaling/Cargo.toml b/matchbox_signaling/Cargo.toml index 9ede73f3..aaf1bc89 100644 --- a/matchbox_signaling/Cargo.toml +++ b/matchbox_signaling/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_signaling" -version = "0.9.0" +version = "0.10.0" authors = [ "Johan Helsing ", "Spencer C. Imbleau ", @@ -18,7 +18,7 @@ categories = [ repository = "https://github.com/johanhelsing/matchbox" [dependencies] -matchbox_protocol = { version = "0.9", path = "../matchbox_protocol", features = [ +matchbox_protocol = { version = "0.10", path = "../matchbox_protocol", features = [ "json", ] } axum = { version = "0.7", features = ["ws"] } diff --git a/matchbox_socket/Cargo.toml b/matchbox_socket/Cargo.toml index 3d349615..168a8964 100644 --- a/matchbox_socket/Cargo.toml +++ b/matchbox_socket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_socket" -version = "0.9.0" +version = "0.10.0" authors = ["Johan Helsing "] description = "Painless WebRTC peer-to-peer full-mesh networking socket" edition = "2021" @@ -18,7 +18,7 @@ repository = "https://github.com/johanhelsing/matchbox" ggrs = ["dep:bincode", "dep:ggrs"] [dependencies] -matchbox_protocol = { version = "0.9", path = "../matchbox_protocol", default-features = false } +matchbox_protocol = { version = "0.10", path = "../matchbox_protocol", default-features = false } futures-channel = { version = "0.3", default-features = false, features = [ "sink", ] }