diff --git a/.travis.yml b/.travis.yml index fd2f10f044..93197f38f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ sudo: required dist: trusty env: global: - - OPENRCT2_VERSION="0.1.2" + - OPENRCT2_VERSION="0.1.3" matrix: include: diff --git a/appveyor.yml b/appveyor.yml index f94633b3b9..c3c33374b2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 0.1.2.{build} +version: 0.1.3.{build} image: # - Visual Studio 2015 - Visual Studio 2017 diff --git a/debian/changelog b/debian/changelog index fa177d0bd0..643d93c294 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -openrct2 (0.1.2-develop-1) unstable; urgency=medium +openrct2 (0.1.3-develop-1) unstable; urgency=medium * Release 2017-07 (Closes: #XXXXXX) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 0543469033..918ea8919a 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -1,3 +1,6 @@ +0.1.3 (in development) +------------------------------------------------------------------------ + 0.1.2 (2018-03-18) ------------------------------------------------------------------------ - Feature: [#2893] Object selection filters for items from RCT1, Added Attractions and Loopy Landscapes. diff --git a/distribution/macos/Info.plist b/distribution/macos/Info.plist index 8600b511f0..6632b22a30 100644 --- a/distribution/macos/Info.plist +++ b/distribution/macos/Info.plist @@ -13,7 +13,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.1.2 + 0.1.3 CFBundleSignature ORCT LSMinimumSystemVersion diff --git a/openrct2.proj b/openrct2.proj index 7c565f75ab..f2ea557a4e 100644 --- a/openrct2.proj +++ b/openrct2.proj @@ -18,7 +18,7 @@ x64 $(GIT_COMMIT_SHA1.Substring(0, 7)) - 0.1.2 + 0.1.3 -$(GIT_BRANCH)-$(GIT_COMMIT_SHA1_SHORT) 16 diff --git a/src/openrct2-android/app/build.gradle b/src/openrct2-android/app/build.gradle index 94295aa9e5..d4ca61018a 100644 --- a/src/openrct2-android/app/build.gradle +++ b/src/openrct2-android/app/build.gradle @@ -10,7 +10,7 @@ android { targetSdkVersion 25 versionCode 2 - versionName '0.1.2' + versionName '0.1.3' externalNativeBuild { cmake { diff --git a/src/openrct2/Version.h b/src/openrct2/Version.h index aaeb797ab5..3569d34cb3 100644 --- a/src/openrct2/Version.h +++ b/src/openrct2/Version.h @@ -19,7 +19,7 @@ #include "common.h" #define OPENRCT2_NAME "OpenRCT2" -#define OPENRCT2_VERSION "0.1.2" +#define OPENRCT2_VERSION "0.1.3" #if defined(__amd64__) || defined(_M_AMD64) #define OPENRCT2_ARCHITECTURE "x86-64" diff --git a/src/openrct2/network/Network.cpp b/src/openrct2/network/Network.cpp index 3086ceb7a0..b3b2f44954 100644 --- a/src/openrct2/network/Network.cpp +++ b/src/openrct2/network/Network.cpp @@ -33,7 +33,7 @@ // This string specifies which version of network stream current build uses. // It is used for making sure only compatible builds get connected, even within // single OpenRCT2 version. -#define NETWORK_STREAM_VERSION "43" +#define NETWORK_STREAM_VERSION "0" #define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION static rct_peep* _pickup_peep = nullptr;