diff --git a/.CI/chatterino-installer.iss b/.CI/chatterino-installer.iss
index 5068a3c2967..2876c429ac8 100644
--- a/.CI/chatterino-installer.iss
+++ b/.CI/chatterino-installer.iss
@@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "Chatterino"
-#define MyAppVersion "2.5.1"
+#define MyAppVersion "2.5.2"
#define MyAppPublisher "Chatterino Team"
#define MyAppURL "https://www.chatterino.com"
#define MyAppExeName "chatterino.exe"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ad89b6710a6..9c2fb46db03 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
## Unversioned
+## 2.5.2-beta.1
+
- Major: Add option to show pronouns in user card. (#5442, #5583)
- Major: Release plugins alpha. (#5288)
- Major: Improve high-DPI support on Windows. (#4868, #5391, #5664, #5666)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index da5eeed647a..1b35e514dcd 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -41,7 +41,7 @@ if(BUILD_BENCHMARKS)
endif()
project(chatterino
- VERSION 2.5.1
+ VERSION 2.5.2
DESCRIPTION "Chat client for twitch.tv"
HOMEPAGE_URL "https://chatterino.com/"
)
diff --git a/resources/com.chatterino.chatterino.appdata.xml b/resources/com.chatterino.chatterino.appdata.xml
index a2d09fecbdc..4d7330cadc1 100644
--- a/resources/com.chatterino.chatterino.appdata.xml
+++ b/resources/com.chatterino.chatterino.appdata.xml
@@ -34,6 +34,9 @@
chatterino
+
+ https://github.com/Chatterino/chatterino2/releases/tag/v2.5.2-beta.1
+
https://github.com/Chatterino/chatterino2/releases/tag/v2.5.1
diff --git a/src/common/Version.hpp b/src/common/Version.hpp
index 8d9ef54a0d4..3b6e6c268f7 100644
--- a/src/common/Version.hpp
+++ b/src/common/Version.hpp
@@ -25,7 +25,7 @@ namespace chatterino {
* - 2.4.0-alpha.2
* - 2.4.0-alpha
**/
-inline const QString CHATTERINO_VERSION = QStringLiteral("2.5.1");
+inline const QString CHATTERINO_VERSION = QStringLiteral("2.5.2-beta.1");
class Version
{