diff --git a/CHANGELOG.md b/CHANGELOG.md
index a6d54bab..a9b8ae37 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
## Unversioned
+## 2.5.2
+
- Bugfix: Fixed a crash in the 7TV EventApi when closing Chatterino. (#5768)
- Bugfix: Fixed scrollbar highlights being visible in overlay windows. (#5769)
- Bugfix: Make macos fonts look the same as v2.5.1. (#5775)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1b35e514..ad9bdeff 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -40,7 +40,7 @@ if(BUILD_BENCHMARKS)
list(APPEND VCPKG_MANIFEST_FEATURES "benchmarks")
endif()
-project(chatterino
+project(chatterino
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 4d7330ca..a1e153d7 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
+
https://github.com/Chatterino/chatterino2/releases/tag/v2.5.2-beta.1
diff --git a/src/common/Version.hpp b/src/common/Version.hpp
index 3b6e6c26..1b294961 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.2-beta.1");
+inline const QString CHATTERINO_VERSION = QStringLiteral("2.5.2");
class Version
{