From ca1a261d025451de7d398b4fc14b37f36e7f22dc Mon Sep 17 00:00:00 2001 From: simonsarginson Date: Tue, 14 Sep 2021 17:30:45 +0100 Subject: [PATCH 1/3] update worker sdk to 15.1.1 --- CHANGELOG.md | 4 ++++ RequireSetup | 2 +- SpatialGDK/Extras/core-sdk.version | 2 +- .../Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 146f5b5095..9619dbf251 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 **Note**: Since GDK for Unreal v0.10.0, the changelog is published in both English and Chinese. The Chinese version of each changelog is shown after its English version.
**注意**:自虚幻引擎开发套件 v0.10.0 版本起,其日志提供中英文两个版本。每个日志的中文版本都置于英文版本之后。 +## [`0.14.1-rc`] - unreleased + +### Features: +- The GDK has been upgraded to use version 15.1.1 of SpatialOS. ## [`0.14.0`] - 2021-08-16 diff --git a/RequireSetup b/RequireSetup index 82102a8751..0fe9e0e4e9 100644 --- a/RequireSetup +++ b/RequireSetup @@ -1,4 +1,4 @@ Increment the below number whenever it is required to run Setup.bat or Setup.sh as part of a new commit. Our git hooks will detect this file has been updated and automatically run Setup.bat on pull. -91 +92 diff --git a/SpatialGDK/Extras/core-sdk.version b/SpatialGDK/Extras/core-sdk.version index de7fd55182..b6f24becd0 100644 --- a/SpatialGDK/Extras/core-sdk.version +++ b/SpatialGDK/Extras/core-sdk.version @@ -1,2 +1,2 @@ -15.1.0 +15.1.1 // If changing version, update SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h too diff --git a/SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h b/SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h index 7c955fba2d..a2411fe976 100644 --- a/SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h +++ b/SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h @@ -4,7 +4,7 @@ #include "improbable/c_worker.h" -#define WORKER_SDK_VERSION "15.1.0" +#define WORKER_SDK_VERSION "15.1.1" constexpr bool StringsEqual(char const* A, char const* B) { From c9c56a9ac8817b9a1293858d01a90b307b9ea9b7 Mon Sep 17 00:00:00 2001 From: simonsarginson Date: Thu, 16 Sep 2021 10:26:52 +0100 Subject: [PATCH 2/3] fix up sdk version to be 15.1.0 even though it is package 15.1.1 as its still marked as 15.1.0 by worker --- SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h b/SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h index a2411fe976..ed34e1bcc3 100644 --- a/SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h +++ b/SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h @@ -4,7 +4,7 @@ #include "improbable/c_worker.h" -#define WORKER_SDK_VERSION "15.1.1" +#define WORKER_SDK_VERSION "15.1.0" // We currently download the 15.1.1 SDK, but its still marked as 15.1.0 by worker constexpr bool StringsEqual(char const* A, char const* B) { From 7cb945c994c2c8148a2503cd5a4b8994b6189724 Mon Sep 17 00:00:00 2001 From: Simon Sarginson Date: Thu, 16 Sep 2021 10:36:46 +0100 Subject: [PATCH 3/3] Update SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h --- SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h b/SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h index ed34e1bcc3..64cd01a727 100644 --- a/SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h +++ b/SpatialGDK/Source/SpatialGDK/Public/Utils/WorkerVersionCheck.h @@ -4,7 +4,7 @@ #include "improbable/c_worker.h" -#define WORKER_SDK_VERSION "15.1.0" // We currently download the 15.1.1 SDK, but its still marked as 15.1.0 by worker +#define WORKER_SDK_VERSION "15.1.0" // We currently download the 15.1.1 SDK, but its still marked as 15.1.0. constexpr bool StringsEqual(char const* A, char const* B) {