diff --git a/.CI/chatterino-installer.iss b/.CI/chatterino-installer.iss index 1db2b79dd2f..22f69c3a7b2 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 "Chatterino7" -#define MyAppVersion "7.5.0" +#define MyAppVersion "7.5.1" #define MyAppPublisher "7TV" #define MyAppURL "https://www.chatterino.com" #define MyAppExeName "chatterino.exe" diff --git a/CHANGELOG.md b/CHANGELOG.md index d335d8274f6..07df030e064 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 26bc0e19ca7..a69ca8bb8ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,7 +42,7 @@ if(BUILD_BENCHMARKS) endif() project(chatterino - VERSION 7.5.0 + VERSION 7.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 62faf335fef..3c0b8886f1e 100644 --- a/resources/com.chatterino.chatterino.appdata.xml +++ b/resources/com.chatterino.chatterino.appdata.xml @@ -34,6 +34,9 @@ chatterino + + https://github.com/SevenTV/chatterino7/releases/tag/v7.5.1 + https://github.com/SevenTV/chatterino7/releases/tag/v7.5.0 diff --git a/src/common/Version.hpp b/src/common/Version.hpp index 836927a3903..075e3fd4f15 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 "7.5.0" +#define CHATTERINO_VERSION "7.5.1" #if defined(Q_OS_WIN) # define CHATTERINO_OS "win"