diff --git a/.CI/chatterino-installer.iss b/.CI/chatterino-installer.iss
index fddd668f9..1f9816a29 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.0"
+#define MyAppVersion "2.5.1"
#define MyAppPublisher "Chatterino Team"
#define MyAppURL "https://www.chatterino.com"
#define MyAppExeName "chatterino.exe"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d335d8274..07df030e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
## Unversioned
+## 2.5.1
+
- Bugfix: Fixed links without a protocol not being clickable. (#5345)
## 2.5.0
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3a08cf79e..fdcb7075b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -41,7 +41,7 @@ if(BUILD_BENCHMARKS)
endif()
project(chatterino
- VERSION 2.5.0
+ VERSION 2.5.1
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 69d1b9289..a2d09fecb 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.1
+
https://github.com/Chatterino/chatterino2/releases/tag/v2.5.0
diff --git a/src/common/Version.hpp b/src/common/Version.hpp
index b58af4fbd..fbe536a69 100644
--- a/src/common/Version.hpp
+++ b/src/common/Version.hpp
@@ -24,7 +24,7 @@
* - 2.4.0-alpha.2
* - 2.4.0-alpha
**/
-#define CHATTERINO_VERSION "2.5.0"
+#define CHATTERINO_VERSION "2.5.1"
#if defined(Q_OS_WIN)
# define CHATTERINO_OS "win"