From b9c646d3768f55aebddbc547aa27d0aad4cfebca Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sun, 19 Dec 2021 15:40:59 +0200 Subject: [PATCH 43/43] Set version number to 3.1.91 for year 2022 See osdn #43391 Signed-off-by: Marko Lindqvist --- fc_version | 4 ++-- server/savegame/savecompat.c | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/fc_version b/fc_version index b5c27c69dc..e98eed06d1 100755 --- a/fc_version +++ b/fc_version @@ -7,8 +7,8 @@ MAJOR_VERSION="3" MINOR_VERSION="1" -PATCH_VERSION="90" -EMERGENCY_VERSION="8" +PATCH_VERSION="91" +EMERGENCY_VERSION="" VERSION_LABEL="-dev" # 1) Development until MAJOR and MINOR version numbers are diff --git a/server/savegame/savecompat.c b/server/savegame/savecompat.c index 589c92c7e9..012faa5418 100644 --- a/server/savegame/savecompat.c +++ b/server/savegame/savecompat.c @@ -2256,6 +2256,11 @@ static void compat_load_dev(struct loaddata *loading) } } /* Version < 3.1.91 */ + if (game_version < 3019200) { + /* Before version number bump to 3.1.92 */ + + } /* Version < 3.1.92 */ + #endif /* FREECIV_DEV_SAVE_COMPAT_3_2 */ } -- 2.34.1