From 2dae056767b818a201114f4d76e07c15a18e0ec0 Mon Sep 17 00:00:00 2001 From: Wenxi Zeng Date: Tue, 28 Nov 2023 14:01:02 -0800 Subject: [PATCH] fix release issue --- build.gradle | 2 +- .../main/java/com/segment/analytics/kotlin/core/Constants.kt | 2 +- gradle.properties | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 876bbf44..1b626884 100644 --- a/build.gradle +++ b/build.gradle @@ -32,7 +32,7 @@ allprojects { } tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { kotlinOptions { - freeCompilerArgs = ['-Xjvm-default=enable'] //enable or compatibility + freeCompilerArgs = ['-Xjvm-default=all|all-compatibility'] //enable or compatibility jvmTarget = "1.8" } } diff --git a/core/src/main/java/com/segment/analytics/kotlin/core/Constants.kt b/core/src/main/java/com/segment/analytics/kotlin/core/Constants.kt index a55da1ec..ddaaabee 100644 --- a/core/src/main/java/com/segment/analytics/kotlin/core/Constants.kt +++ b/core/src/main/java/com/segment/analytics/kotlin/core/Constants.kt @@ -1,7 +1,7 @@ package com.segment.analytics.kotlin.core object Constants { - const val LIBRARY_VERSION = "1.13.5" + const val LIBRARY_VERSION = "1.14.0" const val DEFAULT_API_HOST = "api.segment.io/v1" const val DEFAULT_CDN_HOST = "cdn-settings.segment.com/v1" } diff --git a/gradle.properties b/gradle.properties index b849eb8c..9f961a4c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -23,8 +23,8 @@ kotlin.code.style=official # Deployment variables GROUP=com.segment.analytics.kotlin -VERSION_CODE=1141 -VERSION_NAME=1.14.1 +VERSION_CODE=1140 +VERSION_NAME=1.14.0 POM_NAME=Segment for Kotlin POM_DESCRIPTION=The hassle-free way to add analytics to your Kotlin app.