diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7446d813..c36cfbe1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
- SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
+# 1.14.1 - 31 Mar 2026
+
+- Fix group membership modifications
+
# 1.14.0 - 21 Aug 2025
- Support for Nextcloud 32
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 3e00b0d9..a6e6a3ad 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -16,7 +16,7 @@
* auto generate a user ID (optional)
* and more behavioral switches
]]>
- 1.14.0
+ 1.14.1
agpl
Alan Freihof Tygel
Arthur Schiwon
diff --git a/package-lock.json b/package-lock.json
index 474f6123..ed982944 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "ldap_write_support",
- "version": "1.14.0",
+ "version": "1.14.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "ldap_write_support",
- "version": "1.14.0",
+ "version": "1.14.1",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@nextcloud/dialogs": "^6.3.1",
diff --git a/package.json b/package.json
index 85e7ac9d..e7151d47 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "ldap_write_support",
- "version": "1.14.0",
+ "version": "1.14.1",
"description": "Adds write support to the LDAP backend",
"private": true,
"author": "Arthur Schiwon",
diff --git a/release.sh b/release.sh
index bb99898c..0456b342 100644
--- a/release.sh
+++ b/release.sh
@@ -7,8 +7,8 @@
set -e
# Use version from changelog
-# version=$(head -n1 CHANGELOG.md|cut -d"v" -f2);
-version=$1
+version=$(grep '#' CHANGELOG.md|head -n1|cut -d" " -f2);
+# version=$1
echo "Releasing version $version";
# Ask for confirmation