diff --git a/Makefile b/Makefile
index a5936dc..50718cf 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ help:
#.PHONY: build-push
#build-push:
# docker login ghcr.io
-# docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag ghcr.io/nextcloud/context_chat_backend:5.4.0 --tag ghcr.io/nextcloud/context_chat_backend:latest .
+# docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag ghcr.io/nextcloud/context_chat_backend:5.4.1 --tag ghcr.io/nextcloud/context_chat_backend:latest .
.PHONY: run
run:
@@ -34,5 +34,5 @@ run:
register:
docker exec master-nextcloud-1 sudo -u www-data php occ app_api:app:unregister context_chat_backend --silent || true
docker exec master-nextcloud-1 sudo -u www-data php occ app_api:app:register context_chat_backend manual_install --json-info \
- "{\"id\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"5.4.0\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system\":0}" \
+ "{\"id\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"5.4.1\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system\":0}" \
--force-scopes --wait-finish
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 9316ae8..c005a97 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -21,7 +21,7 @@ Install the given apps for Context Chat to work as desired **in the given order*
Setup background job workers as described here: https://docs.nextcloud.com/server/latest/admin_manual/ai/overview.html#improve-ai-task-pickup-speed
]]>
- 5.4.0
+ 5.4.1
agpl
Anupam Kumar
Context Chat
@@ -36,7 +36,7 @@ Setup background job workers as described here: https://docs.nextcloud.com/serve
ghcr.io
nextcloud-releases/context_chat_backend
- 5.4.0
+ 5.4.1
diff --git a/changelog.md b/changelog.md
index f87051b..6c1dd21 100644
--- a/changelog.md
+++ b/changelog.md
@@ -9,6 +9,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
+## 5.4.1 - 2026-07-16
+
+### Changed
+- NC 35 support (#328) @kyteinsky
+
+### Fixed
+- fix(pgvector): drop "id" column from access_list (#329) @kyteinsky
+
+
## 5.4.0 - 2026-06-24
### Highlights
diff --git a/example.env b/example.env
index 3f4579b..67cad62 100644
--- a/example.env
+++ b/example.env
@@ -18,7 +18,7 @@ AA_VERSION=3.0.0
APP_SECRET=12345
APP_ID=context_chat_backend
APP_DISPLAY_NAME=Context Chat Backend
-APP_VERSION=5.4.0
+APP_VERSION=5.4.1
APP_HOST=0.0.0.0
APP_PORT=10034
APP_PERSISTENT_STORAGE=persistent_storage
diff --git a/pyproject.toml b/pyproject.toml
index 219c3b9..25822cd 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -2,7 +2,7 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
[project]
name = "context_chat_backend"
-version = "5.4.0"
+version = "5.4.1"
requires-python = ">=3.11"
authors = [
{ name = "Anupam Kumar", email = "kyteinsky@gmail.com" }