Skip to content

Commit 0aa5a12

Browse files
Bump to v0.112
This only reverts the versioning login change done in a6ae656 since that caused F-Droid bot and Github Packages to fail to pick up new releases. The versions must be bumped directly in `build.gradle` file in future and not through other files like `gradle.properties`.
1 parent 2e156d4 commit 0aa5a12

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ android {
2626
applicationId "com.termux"
2727
minSdkVersion project.properties.minSdkVersion.toInteger()
2828
targetSdkVersion project.properties.targetSdkVersion.toInteger()
29-
versionCode project.properties.termuxVersionCode.toInteger()
30-
versionName project.properties.termuxVersion
29+
versionCode 112
30+
versionName "0.112"
3131

3232
manifestPlaceholders.TERMUX_PACKAGE_NAME = "com.termux"
3333
manifestPlaceholders.TERMUX_APP_NAME = "Termux"

terminal-emulator/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ publishing {
6363
bar(MavenPublication) {
6464
groupId 'com.termux'
6565
artifactId 'terminal-emulator'
66-
version project.properties.termuxVersion
66+
version "0.112"
6767
artifact(sourceJar)
6868
artifact("$buildDir/outputs/aar/terminal-emulator-release.aar")
6969
}

terminal-view/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ publishing {
4242
bar(MavenPublication) {
4343
groupId 'com.termux'
4444
artifactId 'terminal-view'
45-
version project.properties.termuxVersion
45+
version "0.112"
4646
artifact(sourceJar)
4747
artifact("$buildDir/outputs/aar/terminal-view-release.aar")
4848
}

termux-shared/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ publishing {
5555
bar(MavenPublication) {
5656
groupId 'com.termux'
5757
artifactId 'termux-shared'
58-
version project.properties.termuxVersion
58+
version "0.112"
5959
artifact(sourceJar)
6060
artifact("$buildDir/outputs/aar/termux-shared-release.aar")
6161
}

0 commit comments

Comments
 (0)