From 0aa5a123b7adfe4fc01d76d60ce47ed20d382658 Mon Sep 17 00:00:00 2001 From: agnostic-apollo Date: Thu, 22 Apr 2021 19:57:08 +0500 Subject: [PATCH] Bump to v0.112 This only reverts the versioning login change done in a6ae656c 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`. --- app/build.gradle | 4 ++-- terminal-emulator/build.gradle | 2 +- terminal-view/build.gradle | 2 +- termux-shared/build.gradle | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 7f3af26eb7..30124a4aef 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -26,8 +26,8 @@ android { applicationId "com.termux" minSdkVersion project.properties.minSdkVersion.toInteger() targetSdkVersion project.properties.targetSdkVersion.toInteger() - versionCode project.properties.termuxVersionCode.toInteger() - versionName project.properties.termuxVersion + versionCode 112 + versionName "0.112" manifestPlaceholders.TERMUX_PACKAGE_NAME = "com.termux" manifestPlaceholders.TERMUX_APP_NAME = "Termux" diff --git a/terminal-emulator/build.gradle b/terminal-emulator/build.gradle index 54417be303..db3f3e39e6 100644 --- a/terminal-emulator/build.gradle +++ b/terminal-emulator/build.gradle @@ -63,7 +63,7 @@ publishing { bar(MavenPublication) { groupId 'com.termux' artifactId 'terminal-emulator' - version project.properties.termuxVersion + version "0.112" artifact(sourceJar) artifact("$buildDir/outputs/aar/terminal-emulator-release.aar") } diff --git a/terminal-view/build.gradle b/terminal-view/build.gradle index 565fb766c9..3e78671ba2 100644 --- a/terminal-view/build.gradle +++ b/terminal-view/build.gradle @@ -42,7 +42,7 @@ publishing { bar(MavenPublication) { groupId 'com.termux' artifactId 'terminal-view' - version project.properties.termuxVersion + version "0.112" artifact(sourceJar) artifact("$buildDir/outputs/aar/terminal-view-release.aar") } diff --git a/termux-shared/build.gradle b/termux-shared/build.gradle index c4de70873c..b34e407bbb 100644 --- a/termux-shared/build.gradle +++ b/termux-shared/build.gradle @@ -55,7 +55,7 @@ publishing { bar(MavenPublication) { groupId 'com.termux' artifactId 'termux-shared' - version project.properties.termuxVersion + version "0.112" artifact(sourceJar) artifact("$buildDir/outputs/aar/termux-shared-release.aar") }