Bump to 3.29.0 RC1

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2024-04-17 12:10:38 +02:00
parent a8040e46f6
commit ea9e2f73c3
No known key found for this signature in database
GPG Key ID: 0E00D4D47D0C5AF7
4 changed files with 16 additions and 4 deletions

View File

@ -78,7 +78,7 @@ configurations.configureEach {
// semantic versioning for version code
def versionMajor = 3
def versionMinor = 29
def versionPatch = 0
def versionPatch = 51
def versionBuild = 0 // 0-50=Alpha / 51-98=RC / 90-99=stable

View File

@ -0,0 +1,12 @@
## 3.29.0 RC1 (April 17, 2024)
- NC Assistant
- Client certificates
- Personal files view
- REUSE compliance
- Bugfixes
Minimum: NC 16 Server, Android 7.0 Nougat
For a full list, please see https://github.com/nextcloud/android/milestone/89

View File

@ -11,7 +11,7 @@ BUILD_NUMBER=$4
PR_NUMBER=$5
stableBranch="master"
stableBranch="stable-3.29"
repository="android"
ruby scripts/analysis/lint-up.rb

View File

@ -7,7 +7,7 @@
# $1: username, $2: password/token, $3: pull request number
if [ -z $3 ] ; then
echo "master";
echo "stable-3.29";
else
curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/android/pulls/$3 | grep \"ref\": | grep -v '"master"' | cut -d"\"" -f4
curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/android/pulls/$3 | grep \"ref\": | grep -v '"stable-3.29"' | cut -d"\"" -f4
fi