From 026b89138e3959c705288abb058e0f2241b221ec Mon Sep 17 00:00:00 2001 From: Nya Date: Mon, 14 Dec 2020 18:52:21 +0100 Subject: [PATCH] chore: Release 3.1.0 --- app/build.gradle | 6 +++--- utils/build.gradle | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 91d3e59..63baeb9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -7,8 +7,8 @@ android { applicationId "ai.elimu.analytics" minSdkVersion 24 targetSdkVersion 29 - versionCode 3000017 - versionName "3.0.17-SNAPSHOT" + versionCode 3001000 + versionName "3.1.0" setProperty("archivesBaseName", "${applicationId}-${versionCode}") testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" javaCompileOptions { @@ -40,7 +40,7 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'com.github.elimu-ai:model:model-2.0.32' + implementation 'com.github.elimu-ai:model:model-2.0.33' implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'com.google.android.material:material:1.2.1' diff --git a/utils/build.gradle b/utils/build.gradle index c928fd0..3af1f98 100644 --- a/utils/build.gradle +++ b/utils/build.gradle @@ -10,8 +10,8 @@ android { defaultConfig { minSdkVersion 24 targetSdkVersion 29 - versionCode 1001000 - versionName "1.1.0-SNAPSHOT" + versionCode 3001000 + versionName "3.1.0" setProperty("archivesBaseName", "utils-${versionName}") } @@ -27,7 +27,7 @@ android { } dependencies { - implementation 'com.github.elimu-ai:model:model-2.0.32' + implementation 'com.github.elimu-ai:model:model-2.0.33' } // See https://docs.gradle.org/current/dsl/org.gradle.api.publish.maven.MavenPublication.html @@ -37,7 +37,7 @@ publishing { utils(MavenPublication) { groupId 'ai.elimu.analytics' artifactId 'utils' - version '1.1.0-SNAPSHOT' + version '3.1.0' artifact("${buildDir}/outputs/aar/utils-${version}-release.aar") } }