diff --git a/mk/linux/mg-version.sh b/mk/linux/mg-version.sh index bfde3b52..50b50d92 100755 --- a/mk/linux/mg-version.sh +++ b/mk/linux/mg-version.sh @@ -6,7 +6,7 @@ OLD_MG_VERSION=3.9.1 OLD_MG_VERSION_BINARY=3.9.1 -MG_VERSION=3.10.0-beta1 +MG_VERSION=v3.11-beta2.0 if [ "$1" = "--oldversion" ]; then echo "$OLD_MG_VERSION" diff --git a/source/glest_game/facilities/game_util.cpp b/source/glest_game/facilities/game_util.cpp index bd58e079..238a7e4c 100644 --- a/source/glest_game/facilities/game_util.cpp +++ b/source/glest_game/facilities/game_util.cpp @@ -27,8 +27,13 @@ using namespace Shared::Platform; namespace Glest { namespace Game { const char *mailString = " http://bugs.megaglest.org"; -const string glestVersionString = "v3.10.0-dev"; + +// !! Use minor versions !! Only major and minor version control compatibility! +// typical version numbers look like this: v3.11-beta1.0 v3.12-dev v3.12.0 +// don't forget to update mk/linux/mg-version.sh +const string glestVersionString = "v3.11-beta2.0"; const string lastCompatibleSaveGameVersionString = "v3.9.0"; + #if defined(GITVERSION) const string GIT_RawRev = string(GITVERSION); const string GIT_Rev = string("Rev: ") + string(GITVERSION);