From 26622882c0ce04c058a7a7b3771225f3d2080708 Mon Sep 17 00:00:00 2001 From: Rainxch Zed Date: Tue, 9 Dec 2025 08:14:06 +0500 Subject: [PATCH] feat: Bump version to 1.2.0 Increased the app version from 1.0.1 to 1.2.0 across Android, desktop, and Linux builds. Updated the Android `versionCode` to 3 and the Linux `appRelease` to 3. --- composeApp/build.gradle.kts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composeApp/build.gradle.kts b/composeApp/build.gradle.kts index b7158964e..b54955ce9 100644 --- a/composeApp/build.gradle.kts +++ b/composeApp/build.gradle.kts @@ -138,8 +138,8 @@ android { applicationId = "zed.rainxch.githubstore" minSdk = libs.versions.android.minSdk.get().toInt() targetSdk = libs.versions.android.targetSdk.get().toInt() - versionCode = 2 - versionName = "1.0.1" + versionCode = 3 + versionName = "1.2.0" // Expose GitHub client id to Android BuildConfig (do NOT commit secrets; read from local.properties) buildConfigField("String", "GITHUB_CLIENT_ID", "\"${localGithubClientId}\"") } @@ -176,7 +176,7 @@ compose.desktop { mainClass = "zed.rainxch.githubstore.MainKt" nativeDistributions { packageName = "github-store" - packageVersion = "1.0.1" + packageVersion = "1.2.0" vendor = "rainxchzed" includeAllModules = true targetFormats( @@ -199,8 +199,8 @@ compose.desktop { } linux { iconFile.set(project.file("logo/app_icon.png")) - appRelease = "2" - debPackageVersion = "1.0.1" + appRelease = "3" + debPackageVersion = "1.2.0" menuGroup = "Development" appCategory = "Development" }