From 71745ff73484463ea70ab6eca8bac6cf5bdeb07d Mon Sep 17 00:00:00 2001 From: Johan Klokkhammer Helsing Date: Sat, 21 Dec 2024 10:06:32 +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 6d8d6a5c..82a35fbd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1047,7 +1047,7 @@ dependencies = [ [[package]] name = "bevy_matchbox" -version = "0.10.0" +version = "0.11.0" dependencies = [ "async-compat", "bevy", @@ -3467,7 +3467,7 @@ dependencies = [ [[package]] name = "matchbox_protocol" -version = "0.10.0" +version = "0.11.0" dependencies = [ "cfg-if", "derive_more", @@ -3478,7 +3478,7 @@ dependencies = [ [[package]] name = "matchbox_server" -version = "0.10.0" +version = "0.11.0" dependencies = [ "async-trait", "axum", @@ -3500,7 +3500,7 @@ dependencies = [ [[package]] name = "matchbox_signaling" -version = "0.10.0" +version = "0.11.0" dependencies = [ "async-trait", "axum", @@ -3521,7 +3521,7 @@ dependencies = [ [[package]] name = "matchbox_socket" -version = "0.10.0" +version = "0.11.0" dependencies = [ "async-compat", "async-trait", diff --git a/bevy_matchbox/Cargo.toml b/bevy_matchbox/Cargo.toml index 803da1ff..38417f81 100644 --- a/bevy_matchbox/Cargo.toml +++ b/bevy_matchbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_matchbox" -version = "0.10.0" +version = "0.11.0" authors = [ "Johan Helsing ", "Garry O'Donnell ", "Spencer C. Imbleau ", diff --git a/matchbox_server/Cargo.toml b/matchbox_server/Cargo.toml index 3c1e116d..385917df 100644 --- a/matchbox_server/Cargo.toml +++ b/matchbox_server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_server" -version = "0.10.0" +version = "0.11.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.10", path = "../matchbox_signaling" } -matchbox_protocol = { version = "0.10", path = "../matchbox_protocol", features = [ +matchbox_signaling = { version = "0.11", path = "../matchbox_signaling" } +matchbox_protocol = { version = "0.11", path = "../matchbox_protocol", features = [ "json", ] } async-trait = "0.1" diff --git a/matchbox_signaling/Cargo.toml b/matchbox_signaling/Cargo.toml index 63058111..2dfe0c49 100644 --- a/matchbox_signaling/Cargo.toml +++ b/matchbox_signaling/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_signaling" -version = "0.10.0" +version = "0.11.0" authors = [ "Johan Helsing ", "Spencer C. Imbleau ", @@ -18,7 +18,7 @@ categories = [ repository = "https://github.com/johanhelsing/matchbox" [dependencies] -matchbox_protocol = { version = "0.10", path = "../matchbox_protocol", features = [ +matchbox_protocol = { version = "0.11", path = "../matchbox_protocol", features = [ "json", ] } axum = { version = "0.7", features = ["ws"] } diff --git a/matchbox_socket/Cargo.toml b/matchbox_socket/Cargo.toml index e81ba07d..d2fa9d9d 100644 --- a/matchbox_socket/Cargo.toml +++ b/matchbox_socket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_socket" -version = "0.10.0" +version = "0.11.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.10", path = "../matchbox_protocol", default-features = false } +matchbox_protocol = { version = "0.11", path = "../matchbox_protocol", default-features = false } futures-channel = { version = "0.3", default-features = false, features = [ "sink", ] }