diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-14 20:50:10 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-14 20:50:10 +0200 |
| commit | 4f54e90c3ad54f299d288a692228643ea07f025d (patch) | |
| tree | ab7a311b8b04ecf1333736b12969e7c34dc00ae3 | |
| parent | a352c821846e7d0ef2750a36981ab3c2ff95d052 (diff) | |
| download | hurrycurry-4f54e90c3ad54f299d288a692228643ea07f025d.tar hurrycurry-4f54e90c3ad54f299d288a692228643ea07f025d.tar.bz2 hurrycurry-4f54e90c3ad54f299d288a692228643ea07f025d.tar.zst | |
Update protocol versions for 3.0
| -rw-r--r-- | Cargo.lock | 10 | ||||
| -rw-r--r-- | client/global.gd | 2 | ||||
| -rw-r--r-- | server/Cargo.toml | 2 | ||||
| -rw-r--r-- | server/bot/Cargo.toml | 2 | ||||
| -rw-r--r-- | server/client-lib/Cargo.toml | 2 | ||||
| -rw-r--r-- | server/discover/Cargo.toml | 2 | ||||
| -rw-r--r-- | server/registry/Cargo.toml | 2 |
7 files changed, 11 insertions, 11 deletions
@@ -985,7 +985,7 @@ dependencies = [ [[package]] name = "hurrycurry-bot" -version = "2.3.5" +version = "3.0.0" dependencies = [ "anyhow", "clap", @@ -998,7 +998,7 @@ dependencies = [ [[package]] name = "hurrycurry-client-lib" -version = "2.3.5" +version = "3.0.0" dependencies = [ "anyhow", "futures-util", @@ -1027,7 +1027,7 @@ dependencies = [ [[package]] name = "hurrycurry-discover" -version = "2.3.5" +version = "3.0.0" dependencies = [ "anyhow", "clap", @@ -1089,7 +1089,7 @@ dependencies = [ [[package]] name = "hurrycurry-registry" -version = "2.3.5" +version = "3.0.0" dependencies = [ "anyhow", "env_logger", @@ -1125,7 +1125,7 @@ dependencies = [ [[package]] name = "hurrycurry-server" -version = "2.3.5" +version = "3.0.0" dependencies = [ "anyhow", "clap", diff --git a/client/global.gd b/client/global.gd index bcf44998..4f68f99f 100644 --- a/client/global.gd +++ b/client/global.gd @@ -16,7 +16,7 @@ class_name G extends Node -const VERSION := "2.3.5" +const VERSION := "3.0.0" const DISTRIBUTION := "unknown" signal using_joypad_change(using: bool) diff --git a/server/Cargo.toml b/server/Cargo.toml index 57dcad6c..add1329f 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-server" -version = "2.3.5" +version = "3.0.0" edition = "2024" default-run = "hurrycurry-server" diff --git a/server/bot/Cargo.toml b/server/bot/Cargo.toml index 94170510..c8717986 100644 --- a/server/bot/Cargo.toml +++ b/server/bot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-bot" -version = "2.3.5" +version = "3.0.0" edition = "2024" [dependencies] diff --git a/server/client-lib/Cargo.toml b/server/client-lib/Cargo.toml index 17a3b259..47a75e7e 100644 --- a/server/client-lib/Cargo.toml +++ b/server/client-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-client-lib" -version = "2.3.5" +version = "3.0.0" edition = "2024" [dependencies] diff --git a/server/discover/Cargo.toml b/server/discover/Cargo.toml index c41f574c..f09584f7 100644 --- a/server/discover/Cargo.toml +++ b/server/discover/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-discover" -version = "2.3.5" +version = "3.0.0" edition = "2024" [dependencies] diff --git a/server/registry/Cargo.toml b/server/registry/Cargo.toml index ba65f7ca..8c5ad971 100644 --- a/server/registry/Cargo.toml +++ b/server/registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-registry" -version = "2.3.5" +version = "3.0.0" edition = "2024" [dependencies] |