diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8d0e83789..61f345093 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [15.0.1] - 2024-09-12
+
+### Fix
+
+* Don't use existing user when header is set
+
## [15.0.0] - 2024-09-07
### Breaking changes
diff --git a/Makefile b/Makefile
index 119c5de5b..5d357be14 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ source_dir=$(build_dir)/source
sign_dir=$(build_dir)/sign
package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
-version+=15.0.0
+version+=15.0.1
all: dev-setup build-js-production composer-no-dev
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 963393fef..b33cbfb84 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -23,7 +23,7 @@ Requirements:
- mbstring: *
- when using MySQL, use at least v8.0
]]>
- 15.0.0
+ 15.0.1
agpl
Marcel Klehr
Arthur Schiwon
diff --git a/package.json b/package.json
index 92ae5e45c..d1b37fd5a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "bookmarks",
- "version": "15.0.0",
+ "version": "15.0.1",
"main": "js/index.js",
"scripts": {
"build": "webpack --node-env production --progress --config webpack.js",