From ef6e6d7d696a60955879b8b3bd56982d1c736c21 Mon Sep 17 00:00:00 2001 From: Abdelilah El Aissaoui Date: Tue, 16 Aug 2022 14:17:48 +0200 Subject: [PATCH] Increased version to 1.1.0 --- build.gradle.kts | 2 +- src/main/kotlin/app/AppConstants.kt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index aa89820..bc2f726 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } // Remember to update Constants.APP_VERSION when changing this version -val projectVersion = "1.0.1" +val projectVersion = "1.1.0" val projectName = "Gitnuro" group = "com.jetpackduba" diff --git a/src/main/kotlin/app/AppConstants.kt b/src/main/kotlin/app/AppConstants.kt index 597841f..76b473f 100644 --- a/src/main/kotlin/app/AppConstants.kt +++ b/src/main/kotlin/app/AppConstants.kt @@ -22,8 +22,8 @@ object AppConstants { const val APP_NAME = "Gitnuro" const val APP_DESCRIPTION = "Gitnuro is a Git client that allows you to manage multiple repositories with a modern experience and live visual representation of your repositories' state." - const val APP_VERSION = "1.0.1" - const val APP_VERSION_CODE = 4 + const val APP_VERSION = "1.1.0" + const val APP_VERSION_CODE = 5 const val VERSION_CHECK_URL = "https://raw.githubusercontent.com/JetpackDuba/Gitnuro/main/latest.json" }