diff --git a/CHANGELOG.md b/CHANGELOG.md
index 59bd0b87..1dd97cc1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
## Unversioned
+## 2.5.4
+
- Bugfix: Fixed crashes that could occur when Lua functions errored with values other than strings. (#6441)
- Bugfix: Fixed zero-width global BTTV emotes not showing in the `:~` completions. (#6440)
- Bugfix: Fixed an issue where the update button would be unclickable on macOS and Linux. (#6447, #6453)
diff --git a/resources/com.chatterino.chatterino.appdata.xml b/resources/com.chatterino.chatterino.appdata.xml
index eb028f12..74e834d0 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.4
+
https://github.com/Chatterino/chatterino2/releases/tag/v2.5.4-beta.1
diff --git a/src/common/Version.hpp b/src/common/Version.hpp
index faac0110..5970598f 100644
--- a/src/common/Version.hpp
+++ b/src/common/Version.hpp
@@ -29,7 +29,7 @@ namespace chatterino {
* - 2.4.0-alpha.2
* - 2.4.0-alpha
**/
-inline const QString CHATTERINO_VERSION = QStringLiteral("2.5.4-beta.1");
+inline const QString CHATTERINO_VERSION = QStringLiteral("2.5.4");
class Version
{