diff options
author | metamuffin <metamuffin@disroot.org> | 2024-12-25 20:01:04 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-12-25 20:01:43 +0100 |
commit | 86d9b8be09d30216666758e7e1b4ae7f0d69a1eb (patch) | |
tree | b34a0a5669707992f1334f88a1959d5b1e120415 | |
parent | 502b284be74445d3cecace4dff82f37aee32c3e5 (diff) | |
download | hurrycurry-86d9b8be09d30216666758e7e1b4ae7f0d69a1eb.tar hurrycurry-86d9b8be09d30216666758e7e1b4ae7f0d69a1eb.tar.bz2 hurrycurry-86d9b8be09d30216666758e7e1b4ae7f0d69a1eb.tar.zst |
bump proto version
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | client/multiplayer.gd | 4 | ||||
-rw-r--r-- | server/protocol/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -1194,7 +1194,7 @@ dependencies = [ [[package]] name = "hurrycurry-protocol" -version = "7.5.0" +version = "8.0.0" dependencies = [ "bincode", "glam", diff --git a/client/multiplayer.gd b/client/multiplayer.gd index 11a5bd84..5a9406ab 100644 --- a/client/multiplayer.gd +++ b/client/multiplayer.gd @@ -21,8 +21,8 @@ extends Node signal packet(packet: Dictionary) signal connection_closed() -static var VERSION_MAJOR: int = 7 -static var VERSION_MINOR: int = 5 +static var VERSION_MAJOR: int = 8 +static var VERSION_MINOR: int = 0 var connected := false var socket := WebSocketPeer.new() diff --git a/server/protocol/Cargo.toml b/server/protocol/Cargo.toml index 44533f9d..b6da120a 100644 --- a/server/protocol/Cargo.toml +++ b/server/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-protocol" -version = "7.5.0" +version = "8.0.0" edition = "2021" [dependencies] |