Skip to content

Commit

Permalink
Bump version to 0.6.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hhyyrylainen committed Jun 19, 2024
1 parent 933682b commit 5859020
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Thrive.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<Company>Revolutionary Games Studio</Company>
<Version>0.6.7.0</Version>
<Version>0.6.7.1</Version>
<!--<InformationalVersion>-rc1</InformationalVersion>-->
</PropertyGroup>
<!-- Ignore the subproject source files -->
Expand Down
12 changes: 6 additions & 6 deletions export_presets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ application/modify_resources=true
application/icon="res://assets/misc/icon.ico"
application/console_wrapper_icon=""
application/icon_interpolation=4
application/file_version="0.6.7.0"
application/product_version="0.6.7.0"
application/file_version="0.6.7.1"
application/product_version="0.6.7.1"
application/company_name="Revolutionary Games Studio"
application/product_name="Thrive"
application/file_description="Thrive Game"
Expand Down Expand Up @@ -148,8 +148,8 @@ application/modify_resources=true
application/icon="res://assets/misc/icon.ico"
application/console_wrapper_icon=""
application/icon_interpolation=4
application/file_version="0.6.7.0"
application/product_version="0.6.7.0"
application/file_version="0.6.7.1"
application/product_version="0.6.7.1"
application/company_name="Revolutionary Games Studio"
application/product_name="Thrive"
application/file_description="Thrive Game"
Expand Down Expand Up @@ -261,8 +261,8 @@ application/modify_resources=true
application/icon="res://assets/misc/icon.ico"
application/console_wrapper_icon=""
application/icon_interpolation=4
application/file_version="0.6.7.0"
application/product_version="0.6.7.0"
application/file_version="0.6.7.1"
application/product_version="0.6.7.1"
application/company_name="Revolutionary Games Studio"
application/product_name="Thrive"
application/file_description="Thrive Game"
Expand Down
2 changes: 1 addition & 1 deletion project.godot
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.7.0"
config/version="0.6.7.1"
run/main_scene="res://src/general/MainMenu.tscn"
config/use_custom_user_dir=true
config/custom_user_dir_name="Thrive"
Expand Down
13 changes: 13 additions & 0 deletions simulation_parameters/common/patch_notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -479,3 +479,16 @@
- Updated xunit from 2.8.0 to 2.8.1
- Updated code checking tools
- Updated translations

0.6.7.1:
IntroductionText: |
This is a quick small patch release to fix a few major issues that were resolved since the last release. The most major fix is that many more older CPUs should be able to run Thrive now. This problem was caused by a build configuration setting unintentionally targeting much newer CPU instructions than intended.
ReleaseLink: https://github.com/Revolutionary-Games/Thrive/releases/tag/v0.6.7.1
PatchNotes:
- Changed compilation options for the fallback native library that should now work on older CPUs that only have SSE 4.2 and no newer instructions
- Fixed the game getting stuck when selecting 32 native executor threads
- Re-enabled Harmony mod loading as this no longer seems to cause the game to get stuck on start up with Godot 4
- Reduced unnecessary StringName allocations related to key prompt icons and checking pressed inputs
- Updated YamlDotNet from 15.1.6 to 15.3.0
- Updated Jolt Physics Engine version
- Updated translations
1 change: 1 addition & 0 deletions src/saving/ISaveUpgradeStep.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ private static Dictionary<string, ISaveUpgradeStep> InitializeSaveUpgradeSteps()
{ "0.6.6.0", new UpgradeJustVersionNumber("0.6.6.1") },
{ "0.6.6.1", new UpgradeJustVersionNumber("0.6.6.2") },
{ "0.6.7.0-rc1", new UpgradeJustVersionNumber("0.6.7.0") },
{ "0.6.7.0", new UpgradeJustVersionNumber("0.6.7.1") },
};
}
}
Expand Down

0 comments on commit 5859020

Please sign in to comment.