Skip to content

Commit 7d79795

Browse files
authored
Merge pull request #1208 from nextcloud/release/v1.14.1
Release v1.14.1 for stable32
2 parents ca72b5c + 70ce75c commit 7d79795

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
- SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
33
- SPDX-License-Identifier: AGPL-3.0-or-later
44
-->
5+
# 1.14.1 - 31 Mar 2026
6+
7+
- Fix group membership modifications
8+
59
# 1.14.0 - 21 Aug 2025
610

711
- Support for Nextcloud 32

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* auto generate a user ID (optional)
1717
* and more behavioral switches
1818
]]></description>
19-
<version>1.14.0</version>
19+
<version>1.14.1</version>
2020
<licence>agpl</licence>
2121
<author mail="alan@eita.org.br" homepage="http://eita.org.br">Alan Freihof Tygel</author>
2222
<author mail="blizzz@arthur-schiwon.de" homepage="https://arthur-schiwon.de">Arthur Schiwon</author>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ldap_write_support",
3-
"version": "1.14.0",
3+
"version": "1.14.1",
44
"description": "Adds write support to the LDAP backend",
55
"private": true,
66
"author": "Arthur Schiwon",

release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
set -e
88

99
# Use version from changelog
10-
# version=$(head -n1 CHANGELOG.md|cut -d"v" -f2);
11-
version=$1
10+
version=$(grep '#' CHANGELOG.md|head -n1|cut -d" " -f2);
11+
# version=$1
1212
echo "Releasing version $version";
1313

1414
# Ask for confirmation

0 commit comments

Comments
 (0)