Skip to content

Commit bbba3fe

Browse files
Merge pull request #11930 from nextcloud/bump3.26
Bump3.26
2 parents 9ea82ed + 0a036de commit bbba3fe

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ configurations.configureEach {
5959
def versionMajor = 3
6060
def versionMinor = 26
6161
def versionPatch = 0
62-
def versionBuild = 0 // 0-50=Alpha / 51-98=RC / 90-99=stable
62+
def versionBuild = 51 // 0-50=Alpha / 51-98=RC / 90-99=stable
6363

6464

6565
def ndkEnv = new HashMap<String, String>()

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
daggerVersion = "2.47"
99
markwonVersion = "4.6.2"
1010
prismVersion = "2.0.0"
11-
androidLibraryVersion = "master-SNAPSHOT"
11+
androidLibraryVersion = "rc-2.16.0-01"
1212
mockitoVersion = "4.11.0"
1313
mockitoKotlinVersion = "4.1.0"
1414
mockkVersion = "1.13.3"

scripts/analysis/analysis-wrapper.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ BUILD_NUMBER=$4
77
PR_NUMBER=$5
88

99

10-
stableBranch="master"
10+
stableBranch="stable-3.26"
1111
repository="android"
1212

1313
ruby scripts/analysis/lint-up.rb

scripts/analysis/getBranchName.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# $1: username, $2: password/token, $3: pull request number
44

55
if [ -z $3 ] ; then
6-
echo "master";
6+
echo "stable-3.26";
77
else
8-
curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/android/pulls/$3 | grep \"ref\": | grep -v '"master"' | cut -d"\"" -f4
8+
curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/android/pulls/$3 | grep \"ref\": | grep -v '"stable-3.26"' | cut -d"\"" -f4
99
fi

0 commit comments

Comments
 (0)