[Calling] update version to next release

This commit is contained in:
Inderpal Singh Aulakh 2022-11-30 16:59:33 -08:00
Родитель 09745ae9ec
Коммит 73412a3c7b
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -5,7 +5,7 @@ buildscript {
}
ext {
ui_library_version_name = '1.2.0-beta.1'
ui_library_version_name = '1.2.0-beta.2'
chat_library_version_name = '1.0.0-beta.1'
ui_library_version_code = getVersionCode()

Просмотреть файл

@ -7,7 +7,7 @@ internal class DiagnosticConfig {
val tags: Array<String> by lazy { arrayOf(getApplicationId()) }
private fun getApplicationId(): String {
val callingCompositeVersionName = "1.2.0-beta.1"
val callingCompositeVersionName = "1.2.0-beta.2"
val baseTag = "ac"
// Tag template is: acXYYY/<version>
// Where:

Просмотреть файл

@ -6,7 +6,7 @@ import org.junit.Test
internal class DiagnosticConfigUnitTests {
private val expectedPrefix = "aca110/"
private val expectedVersion = "${expectedPrefix}1.2.0-beta.1"
private val expectedVersion = "${expectedPrefix}1.2.0-beta.2"
@Test
fun test_Expected_Tag() {