summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-11-27 15:50:33 +0100
committermetamuffin <metamuffin@disroot.org>2024-11-27 15:50:33 +0100
commit2bb44c0bc08cf8033de78e8678e8c715a65a5635 (patch)
treefb08c7bed657c6034ac614f9b900185d21b05754
parent696dbdd2238e919bffa756fff1f02ace90a81ecb (diff)
downloadhurrycurry-2bb44c0bc08cf8033de78e8678e8c715a65a5635.tar
hurrycurry-2bb44c0bc08cf8033de78e8678e8c715a65a5635.tar.bz2
hurrycurry-2bb44c0bc08cf8033de78e8678e8c715a65a5635.tar.zst
set protocol version
-rw-r--r--Cargo.lock2
-rw-r--r--client/multiplayer.gd4
-rw-r--r--server/protocol/Cargo.toml2
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 16988dc7..246ca739 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1194,7 +1194,7 @@ dependencies = [
[[package]]
name = "hurrycurry-protocol"
-version = "7.4.0"
+version = "7.5.0"
dependencies = [
"bincode",
"glam",
diff --git a/client/multiplayer.gd b/client/multiplayer.gd
index 9e48ac20..7e05e759 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 = 8
-static var VERSION_MINOR: int = 0
+static var VERSION_MAJOR: int = 7
+static var VERSION_MINOR: int = 5
var connected := false
var socket := WebSocketPeer.new()
diff --git a/server/protocol/Cargo.toml b/server/protocol/Cargo.toml
index f600fa8a..44533f9d 100644
--- a/server/protocol/Cargo.toml
+++ b/server/protocol/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "hurrycurry-protocol"
-version = "7.4.0"
+version = "7.5.0"
edition = "2021"
[dependencies]