Skip to content

Commit 92d5009

Browse files
authored
release 1.20.0 (#270)
* update version * fix release ci issue * fix release ci issue
1 parent a21da76 commit 92d5009

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

android/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,8 @@ dependencies {
7878

7979
apply from: rootProject.file('gradle/artifacts-android.gradle')
8080
apply from: rootProject.file('gradle/mvn-publish.gradle')
81-
apply from: rootProject.file('gradle/codecov.gradle')
81+
apply from: rootProject.file('gradle/codecov.gradle')
82+
83+
tasks.named("signReleasePublication") {
84+
dependsOn("bundleReleaseAar")
85+
}

core/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,8 @@ dependencies {
3838

3939
apply from: rootProject.file('gradle/artifacts-core.gradle')
4040
apply from: rootProject.file('gradle/mvn-publish.gradle')
41-
apply from: rootProject.file('gradle/codecov.gradle')
41+
apply from: rootProject.file('gradle/codecov.gradle')
42+
43+
tasks.named("signReleasePublication") {
44+
dependsOn("jar")
45+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.segment.analytics.kotlin.core
22

33
object Constants {
4-
const val LIBRARY_VERSION = "1.19.2"
4+
const val LIBRARY_VERSION = "1.20.0"
55
const val DEFAULT_API_HOST = "api.segment.io/v1"
66
const val DEFAULT_CDN_HOST = "cdn-settings.segment.com/v1"
77
}

gradle.properties

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ android.useAndroidX=true
1919
android.enableJetifier=true
2020
# Kotlin code style for this project: "official" or "obsolete":
2121
kotlin.code.style=official
22+
android.disableAutomaticComponentCreation=true
2223

2324
# Deployment variables
2425
GROUP=com.segment.analytics.kotlin
2526

26-
VERSION_CODE=1192
27-
VERSION_NAME=1.19.2
27+
VERSION_CODE=1200
28+
VERSION_NAME=1.20.0
2829

2930
POM_NAME=Segment for Kotlin
3031
POM_DESCRIPTION=The hassle-free way to add analytics to your Kotlin app.

0 commit comments

Comments
 (0)