From 0c128c0ac0fd01cfd90040775ea1e87e45ab223b Mon Sep 17 00:00:00 2001 From: Johan Klokkhammer Helsing Date: Sat, 9 Mar 2024 11:21:23 +0100 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 1ea5069e..c8dd45c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -991,7 +991,7 @@ dependencies = [ [[package]] name = "bevy_matchbox" -version = "0.8.0" +version = "0.9.0" dependencies = [ "async-compat", "bevy", @@ -3096,7 +3096,7 @@ dependencies = [ [[package]] name = "matchbox_protocol" -version = "0.8.0" +version = "0.9.0" dependencies = [ "cfg-if", "derive_more", @@ -3107,7 +3107,7 @@ dependencies = [ [[package]] name = "matchbox_server" -version = "0.8.0" +version = "0.9.0" dependencies = [ "async-trait", "axum", @@ -3129,7 +3129,7 @@ dependencies = [ [[package]] name = "matchbox_signaling" -version = "0.8.0" +version = "0.9.0" dependencies = [ "async-trait", "axum", @@ -3150,7 +3150,7 @@ dependencies = [ [[package]] name = "matchbox_socket" -version = "0.8.1" +version = "0.9.0" dependencies = [ "async-compat", "async-trait", diff --git a/bevy_matchbox/Cargo.toml b/bevy_matchbox/Cargo.toml index a608ce84..de352c65 100644 --- a/bevy_matchbox/Cargo.toml +++ b/bevy_matchbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_matchbox" -version = "0.8.0" +version = "0.9.0" authors = [ "Johan Helsing ", "Garry O'Donnell ", "Spencer C. Imbleau ", diff --git a/matchbox_server/Cargo.toml b/matchbox_server/Cargo.toml index 57e099df..0a996cee 100644 --- a/matchbox_server/Cargo.toml +++ b/matchbox_server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_server" -version = "0.8.0" +version = "0.9.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.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" diff --git a/matchbox_signaling/Cargo.toml b/matchbox_signaling/Cargo.toml index 6c49c2aa..c9603520 100644 --- a/matchbox_signaling/Cargo.toml +++ b/matchbox_signaling/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_signaling" -version = "0.8.0" +version = "0.9.0" authors = [ "Johan Helsing ", "Spencer C. Imbleau ", @@ -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"] } diff --git a/matchbox_socket/Cargo.toml b/matchbox_socket/Cargo.toml index ab5ddc59..88c37cb4 100644 --- a/matchbox_socket/Cargo.toml +++ b/matchbox_socket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_socket" -version = "0.8.1" +version = "0.9.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.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", ] }