diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 654fd18717..cc18ebbfb6 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -11,7 +11,7 @@ assignees: ''
Fill in the placeholders below. Delete any headings and placeholders that you do not fill in.
-->
**OS:** [e.g. Windows 10]
-**Version:** [e.g. 0.3.0]
+**Version:** [e.g. 0.3.1]
**Commit/Build:** [e.g. 426e106]
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1078111182..d768fc727f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -4,7 +4,7 @@ env:
OPENRCT2_BUILD_SERVER: GitHub
OPENRCT2_ORG_TOKEN: ${{ secrets.OPENRCT2_ORG_TOKEN }}
BACKTRACE_IO_TOKEN: ${{ secrets.BACKTRACE_IO_TOKEN }}
- OPENRCT2_VERSION: 0.3.0
+ OPENRCT2_VERSION: 0.3.1
jobs:
lint-commit:
name: Lint Commit Message
diff --git a/debian/changelog b/debian/changelog
index 8f10466a9a..4e208da112 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-openrct2 (0.3.0-develop-1) unstable; urgency=medium
+openrct2 (0.3.1-develop-1) unstable; urgency=medium
* Release 2020-08 (Closes: #XXXXXX)
diff --git a/distribution/changelog.txt b/distribution/changelog.txt
index 84ffef2594..809a6190ca 100644
--- a/distribution/changelog.txt
+++ b/distribution/changelog.txt
@@ -1,4 +1,4 @@
-0.3.0+ (in development)
+0.3.1 (2020-09-27)
------------------------------------------------------------------------
- Feature: [#10807] Add 2x and 4x zoom levels (currently limited to OpenGL).
- Feature: [#12703] Add scenario plugin APIs.
diff --git a/distribution/linux/openrct2.appdata.xml b/distribution/linux/openrct2.appdata.xml
index 4fcaf9e6f8..0004eba5b3 100644
--- a/distribution/linux/openrct2.appdata.xml
+++ b/distribution/linux/openrct2.appdata.xml
@@ -64,6 +64,9 @@
none
+
+ https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.3.1
+
https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.3.0
diff --git a/distribution/macos/Info.plist b/distribution/macos/Info.plist
index 219b9e1cb7..01988ecb67 100644
--- a/distribution/macos/Info.plist
+++ b/distribution/macos/Info.plist
@@ -13,7 +13,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 0.3.0
+ 0.3.1
CFBundleSignature
ORCT
LSMinimumSystemVersion
diff --git a/distribution/readme.txt b/distribution/readme.txt
index 5899643335..7b205782e9 100644
--- a/distribution/readme.txt
+++ b/distribution/readme.txt
@@ -1,5 +1,5 @@
-Last updated: 2020-09-03
-Release version: 0.3.0
+Last updated: 2020-09-27
+Release version: 0.3.1
------------------------------------------------------------------------
diff --git a/readme.md b/readme.md
index fe812410ce..833df3d072 100644
--- a/readme.md
+++ b/readme.md
@@ -10,7 +10,7 @@ An open-source re-implementation of RollerCoaster Tycoon 2. A construction and m
### Download
| Latest release | Latest development build |
|----------------|--------------------------|
-| [](https://openrct2.org/downloads/master/latest) | [](https://openrct2.org/downloads/develop/latest) |
+| [](https://openrct2.org/downloads/master/latest) | [](https://openrct2.org/downloads/develop/latest) |
---
diff --git a/scripts/setenv b/scripts/setenv
index 515d6a1751..9ba3c8c1b8 100755
--- a/scripts/setenv
+++ b/scripts/setenv
@@ -4,7 +4,7 @@
# It should be dot sourced into your environment
if [[ "$GITHUB_ACTIONS" != "true" ]]; then
export OPENRCT2_BUILD_SERVER=$(hostname)
- export OPENRCT2_VERSION=0.3.0
+ export OPENRCT2_VERSION=0.3.1
GITHUB_REF=$(git rev-parse --symbolic-full-name HEAD)
GITHUB_SHA=$(git rev-parse HEAD)
fi
diff --git a/src/openrct2-android/app/build.gradle b/src/openrct2-android/app/build.gradle
index 90b050e6ed..863db62a1b 100644
--- a/src/openrct2-android/app/build.gradle
+++ b/src/openrct2-android/app/build.gradle
@@ -10,7 +10,7 @@ android {
targetSdkVersion 28
versionCode 2
- versionName '0.3.0'
+ versionName '0.3.1'
externalNativeBuild {
cmake {
diff --git a/src/openrct2/Version.h b/src/openrct2/Version.h
index 8df1213898..5d1e939305 100644
--- a/src/openrct2/Version.h
+++ b/src/openrct2/Version.h
@@ -14,7 +14,7 @@
#include
#define OPENRCT2_NAME "OpenRCT2"
-#define OPENRCT2_VERSION "0.3.0"
+#define OPENRCT2_VERSION "0.3.1"
#if defined(__amd64__) || defined(_M_AMD64)
# define OPENRCT2_ARCHITECTURE "x86-64"
diff --git a/src/openrct2/network/NetworkBase.cpp b/src/openrct2/network/NetworkBase.cpp
index 0dcb5e3d10..5efee10074 100644
--- a/src/openrct2/network/NetworkBase.cpp
+++ b/src/openrct2/network/NetworkBase.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 "7"
+#define NETWORK_STREAM_VERSION "0"
#define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION
static Peep* _pickup_peep = nullptr;