diff --git a/CHANGELOG b/CHANGELOG
index 994708c..23d7595 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -461,3 +461,15 @@
[1.15.0]
* Update Gitea to 1.11.0
+[1.15.1]
+* Update Gitea to 1.11.1
+* Repo name added to automatically generated commit message when merging (#9997) (#10285)
+* Fix Workerpool deadlock (#10283) (#10284)
+* Divide GetIssueStats query in smaller chunks (#10176) (#10282)
+* Fix reply on code review (#10257)
+* Stop hanging issue indexer initialisation from preventing shutdown (#10243) (#10249)
+* Fix filter label emoji width (#10241) (#10244)
+* Fix issue sidebar menus having an infinite height (#10239) (#10240)
+* Fix commit between two commits calculation if there is only last commit (#10225) (#10226)
+* Only check for conflicts/merging if the PR has not been merged in the interim (#10132) (#10206)
+* Blacklist manifest.json & milestones user (#10292) (#10293)
diff --git a/CloudronManifest.json b/CloudronManifest.json
index d262266..01de712 100644
--- a/CloudronManifest.json
+++ b/CloudronManifest.json
@@ -4,7 +4,7 @@
"author": "Gitea developers",
"description": "file://DESCRIPTION.md",
"tagline": "A painless self-hosted Git Service",
- "version": "1.15.0",
+ "version": "1.15.1",
"healthCheckPath": "/healthcheck",
"httpPort": 3000,
"addons": {
diff --git a/DESCRIPTION.md b/DESCRIPTION.md
index 886b782..aff65d1 100644
--- a/DESCRIPTION.md
+++ b/DESCRIPTION.md
@@ -1,4 +1,4 @@
-This app packages Gitea 1.11.0
+This app packages Gitea 1.11.1
Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab.
diff --git a/Dockerfile b/Dockerfile
index a771306..7407c00 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
-ARG VERSION=1.11.0
+ARG VERSION=1.11.1
RUN apt-get update && \
apt-get install -y openssh-server git && \