From 53a1f8d8bc14716c17736671db106cb535b2c6a5 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Fri, 21 Feb 2025 20:53:37 -0500 Subject: [PATCH] Version 99.3 (Build 3384) --- meson_options.txt | 8 ++++---- src/client/GameSave.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index ac6dbceb8..2062631f1 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -59,14 +59,14 @@ option( 'display_version_minor', type: 'integer', min: 0, - value: 2, + value: 3, description: 'Minor component of the display version, should more or less map to the PATCH version in semantic versioning' ) option( 'build_num', type: 'integer', min: 0, - value: 383, + value: 384, description: 'Build number, should be strictly monotonously increasing across public releases' ) option( @@ -80,14 +80,14 @@ option( 'upstream_version_minor', type: 'integer', min: 0, - value: 2, + value: 3, description: 'Minor component of the upstream display version, mod owners should not change this but merge upstream changes to it' ) option( 'upstream_build_num', type: 'integer', min: 0, - value: 383, + value: 384, description: 'Upstream build number, mod owners should not change this but merge upstream changes to it' ) option( diff --git a/src/client/GameSave.cpp b/src/client/GameSave.cpp index 8360d342c..a3187ba48 100644 --- a/src/client/GameSave.cpp +++ b/src/client/GameSave.cpp @@ -17,7 +17,7 @@ #include constexpr auto currentVersion = UPSTREAM_VERSION.displayVersion; -constexpr auto nextVersion = Version(99, 2); +constexpr auto nextVersion = Version(99, 3); static_assert(!ALLOW_FAKE_NEWER_VERSION || nextVersion >= currentVersion); constexpr auto effectiveVersion = ALLOW_FAKE_NEWER_VERSION ? nextVersion : currentVersion;