Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.segment.analytics.kotlin.core

object Constants {
const val LIBRARY_VERSION = "1.20.0"
const val LIBRARY_VERSION = "1.21.0"
const val DEFAULT_API_HOST = "api.segment.io/v1"
const val DEFAULT_CDN_HOST = "cdn-settings.segment.com/v1"
}
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ android.disableAutomaticComponentCreation=true
# Deployment variables
GROUP=com.segment.analytics.kotlin

VERSION_CODE=1200
VERSION_NAME=1.20.0
VERSION_CODE=1210
VERSION_NAME=1.21.0

POM_NAME=Segment for Kotlin
POM_DESCRIPTION=The hassle-free way to add analytics to your Kotlin app.
Expand Down
6 changes: 5 additions & 1 deletion gradle/promote.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ nexusPublishing {
in system environments
be sure to set the variable names exactly as above.
*/
sonatype()
sonatype {
// New Portal OSSRH Staging API endpoints
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
}
}
}
Loading