diff --git a/NEWS.md b/NEWS.md
index 3aaeb007bb..fbdc16e8b2 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,4 +1,4 @@
-### Unreleased
+### Tiled 1.11.1 (10 Jan 2025)
* Scripting: Added `FileFormat.nameFilter`
* Scripting: Added `MapEditor.currentBrushChanged` signal
@@ -15,6 +15,8 @@
* Fixed updating of object label when text changes without changing size
* Fixed minimum value of spinbox in Tile Animation Editor
* Fixed loading of custom property types in tilesets referenced by tile stamps (#4044)
+* Fixed compile against Qt 6.8
+* snap: Updated to core24
* AppImage: Updated to Sentry 0.7.13
### Tiled 1.11.0 (27 June 2024)
diff --git a/docs/conf.py b/docs/conf.py
index 09387b678b..02dd1298bc 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -69,7 +69,7 @@
# The short X.Y version.
version = '1.11'
# The full version, including alpha/beta/rc tags.
-release = '1.11.0'
+release = '1.11.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/org.mapeditor.Tiled.appdata.xml b/org.mapeditor.Tiled.appdata.xml
index 91ac2972d2..c45c131131 100644
--- a/org.mapeditor.Tiled.appdata.xml
+++ b/org.mapeditor.Tiled.appdata.xml
@@ -19,6 +19,31 @@
+
+ https://www.mapeditor.org/2025/01/10/tiled-1-11-1-released.html
+
+
+ - Scripting: Added FileFormat.nameFilter
+ - Scripting: Added MapEditor.currentBrushChanged signal
+ - Scripting: Added tiled.cursor to create mouse cursor values
+ - Scripting: Added Tileset.transformationFlags (#3753)
+ - Scripting: Added Dialog.addRadioButtonGroup for selecting one of a list of mutually exclusive options (#4107)
+ - Scripting: Made currentWangSet and currentWangColorIndex properties writeable (#4105)
+ - AutoMapping: Ignore rules with empty input or output regions (#3834)
+ - Fixed saving/loading of custom properties set on worlds (#4025)
+ - Fixed issue with placing tile objects after switching maps (#3497)
+ - Fixed crash when accessing a world through a symlink (#4042)
+ - Fixed performance issue when tinting tiles from large tilesets
+ - Fixed error reporting when exporting on the command-line (by Shuhei Nagasawa, #4015)
+ - Fixed updating of object label when text changes without changing size
+ - Fixed minimum value of spinbox in Tile Animation Editor
+ - Fixed loading of custom property types in tilesets referenced by tile stamps (#4044)
+ - Fixed compile against Qt 6.8
+ - snap: Updated to core24
+ - AppImage: Updated to Sentry 0.7.13
+
+
+
https://www.mapeditor.org/2024/06/27/tiled-1-11-released.html
diff --git a/tiled.qbs b/tiled.qbs
index fb54d9ba13..f37df5fd07 100644
--- a/tiled.qbs
+++ b/tiled.qbs
@@ -6,7 +6,7 @@ Project {
qbsSearchPaths: "qbs"
minimumQbsVersion: "1.13"
- property string version: Environment.getEnv("TILED_VERSION") || "1.11.0";
+ property string version: Environment.getEnv("TILED_VERSION") || "1.11.1";
property bool snapshot: Environment.getEnv("TILED_SNAPSHOT") == "true"
property bool release: Environment.getEnv("TILED_RELEASE") == "true"
property string libDir: "lib"