diff --git a/Info.plist b/Info.plist
index 2a0fe0643..ae68c7585 100644
--- a/Info.plist
+++ b/Info.plist
@@ -17,7 +17,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 3.2.4
+ 3.2.6
CFBundleSignature
SLA3
NSPrincipalClass
@@ -29,7 +29,7 @@
NSRequiresAquaSystemAppearance
CFBundleVersion
- 3.2.4
+ 3.2.6
CFBundleDocumentTypes
diff --git a/msvc/SLADE.rc b/msvc/SLADE.rc
index b20c3a729..0addbc208 100644
--- a/msvc/SLADE.rc
+++ b/msvc/SLADE.rc
@@ -50,8 +50,8 @@ END
// Version
//
-#define SLADE_VERSION 3,2,5,0
-#define SLADE_VERSION_STR "3.2.5"
+#define SLADE_VERSION 3,2,6,0
+#define SLADE_VERSION_STR "3.2.6"
#define SLADE_COPYRIGHT "Copyright (C) 2008-2024"
VS_VERSION_INFO VERSIONINFO
diff --git a/msvc/makerelease.ps1 b/msvc/makerelease.ps1
index 238e5c119..d226fc078 100644
--- a/msvc/makerelease.ps1
+++ b/msvc/makerelease.ps1
@@ -1,4 +1,4 @@
-$version = "3.2.5"
+$version = "3.2.6"
$rev_short = Invoke-Expression "git.exe rev-parse --short HEAD"
# Check for 7-zip install
diff --git a/msvc/updateversion.ps1 b/msvc/updateversion.ps1
index fc7de8a46..8a9d9908e 100644
--- a/msvc/updateversion.ps1
+++ b/msvc/updateversion.ps1
@@ -1,7 +1,7 @@
# Current version
$version_major = "3"
$version_minor = "2"
-$version_revision = "5"
+$version_revision = "6"
$version_beta = "0"
# Prompt for new version numbers
diff --git a/net.mancubus.SLADE.metainfo.xml b/net.mancubus.SLADE.metainfo.xml
index db5910da1..07eff903a 100644
--- a/net.mancubus.SLADE.metainfo.xml
+++ b/net.mancubus.SLADE.metainfo.xml
@@ -64,6 +64,7 @@
+
diff --git a/src/Application/App.cpp b/src/Application/App.cpp
index 5824e85ac..0e0797a84 100644
--- a/src/Application/App.cpp
+++ b/src/Application/App.cpp
@@ -83,7 +83,7 @@ bool exiting = false;
std::thread::id main_thread_id;
// Version
-Version version_num{ 3, 2, 5, 0 };
+Version version_num{ 3, 2, 6, 0 };
// Directory paths
string dir_data;
diff --git a/win_installer/include/Defines.iss b/win_installer/include/Defines.iss
index a2d4722b5..1b47c725c 100644
--- a/win_installer/include/Defines.iss
+++ b/win_installer/include/Defines.iss
@@ -1,5 +1,5 @@
#define MyAppName "SLADE"
-#define MyAppVersion "3.2.5"
+#define MyAppVersion "3.2.6"
#define MyAppURL "https://slade.mancubus.net"
#define MyAppExeName "SLADE.exe"
#define MyAppPublisher "sirjuddington"