From 0624695509607053b1f623b0d4b76c1119c7b3be Mon Sep 17 00:00:00 2001 From: amplitude-sdk-bot Date: Mon, 23 Sep 2024 23:09:23 +0000 Subject: [PATCH] chore(release): 1.4.3 [skip ci] ## [1.4.3](https://github.com/amplitude/experiment-jvm-server/compare/1.4.2...1.4.3) (2024-09-23) ### Bug Fixes * add metric for cohort download too large ([#33](https://github.com/amplitude/experiment-jvm-server/issues/33)) ([5a855c9](https://github.com/amplitude/experiment-jvm-server/commit/5a855c904b011b931467a29f48914bd7867f83db)) --- CHANGELOG.md | 7 +++++++ build.gradle.kts | 2 +- src/main/kotlin/Experiment.kt | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ed4ce1..edc94e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.4.3](https://github.com/amplitude/experiment-jvm-server/compare/1.4.2...1.4.3) (2024-09-23) + + +### Bug Fixes + +* add metric for cohort download too large ([#33](https://github.com/amplitude/experiment-jvm-server/issues/33)) ([5a855c9](https://github.com/amplitude/experiment-jvm-server/commit/5a855c904b011b931467a29f48914bd7867f83db)) + ## [1.4.2](https://github.com/amplitude/experiment-jvm-server/compare/1.4.1...1.4.2) (2024-09-20) diff --git a/build.gradle.kts b/build.gradle.kts index 5924d0c..a06e364 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -32,7 +32,7 @@ dependencies { // Publishing group = "com.amplitude" -version = "1.4.2" +version = "1.4.3" nexusPublishing { repositories { diff --git a/src/main/kotlin/Experiment.kt b/src/main/kotlin/Experiment.kt index 1dabf5f..7d3e145 100644 --- a/src/main/kotlin/Experiment.kt +++ b/src/main/kotlin/Experiment.kt @@ -4,7 +4,7 @@ import com.amplitude.experiment.util.Logger import com.amplitude.experiment.util.SystemLogger import java.util.concurrent.Executors -internal const val LIBRARY_VERSION = "1.4.2" +internal const val LIBRARY_VERSION = "1.4.3" object Experiment {