Skip to content
Merged
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
6 changes: 5 additions & 1 deletion destination-filters-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,8 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

apply from: rootProject.file('gradle/mvn-publish.gradle')
apply from: rootProject.file('gradle/mvn-publish.gradle')

tasks.named("signReleasePublication") {
dependsOn("bundleReleaseAar")
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import java.lang.ref.WeakReference
class DestinationFilters : Plugin {

companion object {
public const val version = "1.2.0"
public const val version = "1.2.1"
}

private val tsubScript = """
Expand Down
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.nonTransitiveRClass=true

GROUP=com.segment.analytics.kotlin

VERSION_CODE=120
VERSION_NAME=1.2.0
VERSION_CODE=121
VERSION_NAME=1.2.1

POM_NAME=DestinationFilters-Kotlin
POM_DESCRIPTION=Enrich and modify events via OTA updates
Expand Down
Loading