diff --git a/CHANGELOG.md b/CHANGELOG.md
index 653cb9f49..907bb1356 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
## Unversioned
+## 2.3.3
+
- Major: Added username autocompletion popup menu when typing usernames with an @ prefix. (#1979, #2866)
- Major: Added ability to toggle visibility of Channel Tabs - This can be done by right-clicking the tab area or pressing the keyboard shortcut (default: Ctrl+U). (#2600)
- Minor: The /live split now shows channels going offline. (#2880)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ef5c2d312..22fab10c3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -7,7 +7,7 @@ list(APPEND CMAKE_MODULE_PATH
"${CMAKE_SOURCE_DIR}/cmake/sanitizers-cmake/cmake"
)
-project(chatterino VERSION 2.3.2)
+project(chatterino VERSION 2.3.3)
option(BUILD_APP "Build Chatterino" ON)
option(BUILD_TESTS "Build the tests for Chatterino" OFF)
diff --git a/resources/com.chatterino.chatterino.appdata.xml b/resources/com.chatterino.chatterino.appdata.xml
index 9300ab32b..a0802b163 100644
--- a/resources/com.chatterino.chatterino.appdata.xml
+++ b/resources/com.chatterino.chatterino.appdata.xml
@@ -32,6 +32,6 @@
chatterino
-
+
diff --git a/src/common/Version.hpp b/src/common/Version.hpp
index b1100fd3a..29c88e21a 100644
--- a/src/common/Version.hpp
+++ b/src/common/Version.hpp
@@ -3,7 +3,7 @@
#include
#include
-#define CHATTERINO_VERSION "2.3.2"
+#define CHATTERINO_VERSION "2.3.3"
#if defined(Q_OS_WIN)
# define CHATTERINO_OS "win"
diff --git a/src/widgets/Notebook.cpp b/src/widgets/Notebook.cpp
index 0d551e147..1d1bbe785 100644
--- a/src/widgets/Notebook.cpp
+++ b/src/widgets/Notebook.cpp
@@ -352,10 +352,10 @@ void Notebook::setShowTabs(bool value)
{
QMessageBox msgBox;
msgBox.window()->setWindowTitle("Chatterino - hidden tabs");
- msgBox.setText("You've just hidden your tabs");
+ msgBox.setText("You've just hidden your tabs.");
msgBox.setInformativeText(
- "You can toggle tabs by using the keyboard shortcut (Ctrl + U by "
- "default) or right-clicking on the tab area and selecting \"Toggle "
+ "You can toggle tabs by using the keyboard shortcut (Ctrl+U by "
+ "default) or right-clicking the tab area and selecting \"Toggle "
"visibility of tabs\".");
msgBox.addButton(QMessageBox::Ok);
auto *dsaButton =