From 64764c556de01703d3e80f5d60e0f372a224992d Mon Sep 17 00:00:00 2001 From: Abdelilah El Aissaoui Date: Sat, 25 Jun 2022 04:47:53 +0200 Subject: [PATCH] Changed app version to 1.0.0 --- build.gradle.kts | 2 +- src/main/kotlin/app/AppConstants.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index f1ed128..b597064 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 = "0.2.0" +val projectVersion = "1.0.0" val projectName = "Gitnuro" group = "com.jetpackduba" diff --git a/src/main/kotlin/app/AppConstants.kt b/src/main/kotlin/app/AppConstants.kt index 9ba8b0f..1cf8d3b 100644 --- a/src/main/kotlin/app/AppConstants.kt +++ b/src/main/kotlin/app/AppConstants.kt @@ -17,7 +17,7 @@ object AppConstants { // Remember to update build.gradle when changing this 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 = "0.2.0" + const val APP_VERSION = "1.0.0" const val APP_VERSION_CODE = 3 const val VERSION_CHECK_URL = "https://raw.githubusercontent.com/JetpackDuba/Gitnuro/main/latest.json" }