From 44288bcf96cf88605fcf03f2ee220ef6ecb0506b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henri=20Hyyryl=C3=A4inen?= Date: Mon, 24 Feb 2025 09:45:26 +0200 Subject: [PATCH] Bump version to 0.8.1.1 --- Thrive.csproj | 2 +- export_presets.cfg | 12 ++++++------ project.godot | 2 +- src/saving/ISaveUpgradeStep.cs | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Thrive.csproj b/Thrive.csproj index d39510c409a..c7c77d801a1 100644 --- a/Thrive.csproj +++ b/Thrive.csproj @@ -9,7 +9,7 @@ 12.0 enable Revolutionary Games Studio - 0.8.1.0 + 0.8.1.1 true diff --git a/export_presets.cfg b/export_presets.cfg index bdd83697d7e..15e63792f00 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -84,8 +84,8 @@ application/modify_resources=true application/icon="res://assets/misc/icon.ico" application/console_wrapper_icon="" application/icon_interpolation=4 -application/file_version="0.8.1.0" -application/product_version="0.8.1.0" +application/file_version="0.8.1.1" +application/product_version="0.8.1.1" application/company_name="Revolutionary Games Studio" application/product_name="Thrive" application/file_description="Thrive Game" @@ -158,8 +158,8 @@ application/modify_resources=true application/icon="res://assets/misc/icon.ico" application/console_wrapper_icon="" application/icon_interpolation=4 -application/file_version="0.8.1.0" -application/product_version="0.8.1.0" +application/file_version="0.8.1.1" +application/product_version="0.8.1.1" application/company_name="Revolutionary Games Studio" application/product_name="Thrive" application/file_description="Thrive Game" @@ -534,8 +534,8 @@ application/modify_resources=true application/icon="res://assets/misc/icon.ico" application/console_wrapper_icon="" application/icon_interpolation=4 -application/file_version="0.8.1.0" -application/product_version="0.8.1.0" +application/file_version="0.8.1.1" +application/product_version="0.8.1.1" application/company_name="Revolutionary Games Studio" application/product_name="Thrive" application/file_description="Thrive Game" diff --git a/project.godot b/project.godot index 73b678b20ff..0ee520b06b3 100644 --- a/project.godot +++ b/project.godot @@ -15,7 +15,7 @@ config/description="Thrive is an open source evolution simulation game. Play as a microbe on an alien world trying to survive and adapt to your surroundings in order to thrive. https://revolutionarygamesstudio.com/" -config/version="0.8.1.0" +config/version="0.8.1.1" run/main_scene="res://src/general/MainMenu.tscn" config/use_custom_user_dir=true config/custom_user_dir_name="Thrive" diff --git a/src/saving/ISaveUpgradeStep.cs b/src/saving/ISaveUpgradeStep.cs index 451518d219e..301259a528b 100644 --- a/src/saving/ISaveUpgradeStep.cs +++ b/src/saving/ISaveUpgradeStep.cs @@ -94,6 +94,7 @@ private static Dictionary InitializeSaveUpgradeSteps() { "0.7.1.0-rc1", new UpgradeJustVersionNumber("0.7.1.0") }, { "0.8.0.0-rc1", new UpgradeJustVersionNumber("0.8.0.0") }, { "0.8.1.0-rc1", new UpgradeJustVersionNumber("0.8.1.0") }, + { "0.8.1.0", new UpgradeJustVersionNumber("0.8.1.1") }, }; } }