From f3345d18d30e5aaefabe9470736b8d40320d9633 Mon Sep 17 00:00:00 2001 From: MoNTE48 Date: Tue, 3 Mar 2020 17:01:21 +0100 Subject: [PATCH] Version 1.9.0-release --- CMakeLists.txt | 2 +- build/android/app/build.gradle | 4 ++-- build/iOS/MultiCraft/MultiCraft.xcodeproj/project.pbxproj | 8 ++++---- src/config.h | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1291594c..0bc72734 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ set(CMAKE_CXX_STANDARD 11) # Also remember to set PROTOCOL_VERSION in network/networkprotocol.h when releasing set(VERSION_MAJOR 1) -set(VERSION_MINOR 8) +set(VERSION_MINOR 9) set(VERSION_PATCH 0) set(VERSION_EXTRA "" CACHE STRING "Stuff to append to version string") diff --git a/build/android/app/build.gradle b/build/android/app/build.gradle index 70b5f3c9..0aa50ca7 100644 --- a/build/android/app/build.gradle +++ b/build/android/app/build.gradle @@ -7,8 +7,8 @@ android { applicationId 'com.multicraft.game' minSdkVersion 16 targetSdkVersion 29 - versionCode 38 - versionName "1.8.0c" + versionCode 39 + versionName "1.9.0" /*multiDexEnabled true useLibrary 'org.apache.http.legacy'*/ } diff --git a/build/iOS/MultiCraft/MultiCraft.xcodeproj/project.pbxproj b/build/iOS/MultiCraft/MultiCraft.xcodeproj/project.pbxproj index 3c24e57c..eb7716b3 100755 --- a/build/iOS/MultiCraft/MultiCraft.xcodeproj/project.pbxproj +++ b/build/iOS/MultiCraft/MultiCraft.xcodeproj/project.pbxproj @@ -1732,7 +1732,7 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 84; + CURRENT_PROJECT_VERSION = 85; DEVELOPMENT_TEAM = R3RLJ9TW52; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", @@ -1768,7 +1768,7 @@ "@executable_path/Frameworks", ); LIBRARY_SEARCH_PATHS = "$(inherited)"; - MARKETING_VERSION = 1.8.0; + MARKETING_VERSION = 1.9.0; OTHER_CFLAGS = ( "$(inherited)", "-isystem", @@ -1800,7 +1800,7 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 84; + CURRENT_PROJECT_VERSION = 85; DEVELOPMENT_TEAM = R3RLJ9TW52; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", @@ -1837,7 +1837,7 @@ "@executable_path/Frameworks", ); LIBRARY_SEARCH_PATHS = "$(inherited)"; - MARKETING_VERSION = 1.8.0; + MARKETING_VERSION = 1.9.0; OTHER_CFLAGS = ( "$(inherited)", "-isystem", diff --git a/src/config.h b/src/config.h index 2cabfb3f..30502953 100644 --- a/src/config.h +++ b/src/config.h @@ -17,7 +17,7 @@ #define PROJECT_NAME_C "MultiCraft" #define STATIC_SHAREDIR "" #define VERSION_MAJOR 1 - #define VERSION_MINOR 8 + #define VERSION_MINOR 9 #define VERSION_PATCH 0 #define VERSION_STRING STR(VERSION_MAJOR) "." STR(VERSION_MINOR) "." STR(VERSION_PATCH) #endif