From cc00c410542fb426dcabb2483dc70ed9bac1ab0c Mon Sep 17 00:00:00 2001 From: tobiasKaminsky Date: Wed, 17 Jan 2024 07:54:20 +0100 Subject: [PATCH] bump to 3.28.0 RC1 Signed-off-by: tobiasKaminsky --- app/build.gradle | 2 +- build.gradle | 2 +- fastlane/metadata/android/en-US/changelogs/30280051.txt | 9 +++++++++ scripts/analysis/analysis-wrapper.sh | 2 +- scripts/analysis/getBranchName.sh | 4 ++-- 5 files changed, 14 insertions(+), 5 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/30280051.txt diff --git a/app/build.gradle b/app/build.gradle index 49b229d35a30..45c8c0d0e175 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -62,7 +62,7 @@ configurations.configureEach { def versionMajor = 3 def versionMinor = 28 def versionPatch = 0 -def versionBuild = 0 // 0-50=Alpha / 51-98=RC / 90-99=stable +def versionBuild = 51 // 0-50=Alpha / 51-98=RC / 90-99=stable def ndkEnv = new HashMap() diff --git a/build.gradle b/build.gradle index c761c2cff1e8..27e8b4a87285 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ buildscript { daggerVersion = "2.47" markwonVersion = "4.6.2" prismVersion = "2.0.0" - androidLibraryVersion = "master-SNAPSHOT" + androidLibraryVersion = "rc-2.18.0-01" mockitoVersion = "4.11.0" mockitoKotlinVersion = "4.1.0" mockkVersion = "1.13.8" diff --git a/fastlane/metadata/android/en-US/changelogs/30280051.txt b/fastlane/metadata/android/en-US/changelogs/30280051.txt new file mode 100644 index 000000000000..ad4e24019fd5 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/30280051.txt @@ -0,0 +1,9 @@ +## 3.28.0 RC1 (January 17, 2023) + +- E2E sharing +- Bugfixes + + +Minimum: NC 16 Server, Android 7.0 Nougat + +For a full list, please see https://github.com/nextcloud/android/milestone/88 diff --git a/scripts/analysis/analysis-wrapper.sh b/scripts/analysis/analysis-wrapper.sh index 81e04ec2e159..1d373b614e84 100755 --- a/scripts/analysis/analysis-wrapper.sh +++ b/scripts/analysis/analysis-wrapper.sh @@ -7,7 +7,7 @@ BUILD_NUMBER=$4 PR_NUMBER=$5 -stableBranch="master" +stableBranch="stable-3.28" repository="android" ruby scripts/analysis/lint-up.rb diff --git a/scripts/analysis/getBranchName.sh b/scripts/analysis/getBranchName.sh index b9f14834be31..30dbb645e75c 100755 --- a/scripts/analysis/getBranchName.sh +++ b/scripts/analysis/getBranchName.sh @@ -3,7 +3,7 @@ # $1: username, $2: password/token, $3: pull request number if [ -z $3 ] ; then - echo "master"; + echo "stable-3.28"; 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.28"' | cut -d"\"" -f4 fi