From 519ae84595f4b4d2ee7411ee3b09bf2275a7de96 Mon Sep 17 00:00:00 2001 From: amplitude-sdk-bot Date: Fri, 1 Nov 2024 00:32:42 +0000 Subject: [PATCH] chore(release): 1.5.0 [skip ci] # [1.5.0](https://github.com/amplitude/experiment-jvm-server/compare/1.4.4...1.5.0) (2024-11-01) ### Bug Fixes * CohortTooLargeException not thrown when in proxy mode ([#36](https://github.com/amplitude/experiment-jvm-server/issues/36)) ([cc10582](https://github.com/amplitude/experiment-jvm-server/commit/cc1058244582da6835f513c4598e5f66af5597d0)) * fix flag push fallback ([#37](https://github.com/amplitude/experiment-jvm-server/issues/37)) ([2cf5b04](https://github.com/amplitude/experiment-jvm-server/commit/2cf5b04584c716b71c79a91d4220075c12939042)) * remove OptIn annotation for cohort syncing ([#35](https://github.com/amplitude/experiment-jvm-server/issues/35)) ([b5e0684](https://github.com/amplitude/experiment-jvm-server/commit/b5e06848e2238fa450721e8c16e4b95d292f13e0)) ### Features * add flag push ([#30](https://github.com/amplitude/experiment-jvm-server/issues/30)) ([27caeb5](https://github.com/amplitude/experiment-jvm-server/commit/27caeb59e47a710e6a5c682c90e8f3240efce881)) --- CHANGELOG.md | 14 ++++++++++++++ build.gradle.kts | 2 +- src/main/kotlin/Experiment.kt | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fe3390..8c2614c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [1.5.0](https://github.com/amplitude/experiment-jvm-server/compare/1.4.4...1.5.0) (2024-11-01) + + +### Bug Fixes + +* CohortTooLargeException not thrown when in proxy mode ([#36](https://github.com/amplitude/experiment-jvm-server/issues/36)) ([cc10582](https://github.com/amplitude/experiment-jvm-server/commit/cc1058244582da6835f513c4598e5f66af5597d0)) +* fix flag push fallback ([#37](https://github.com/amplitude/experiment-jvm-server/issues/37)) ([2cf5b04](https://github.com/amplitude/experiment-jvm-server/commit/2cf5b04584c716b71c79a91d4220075c12939042)) +* remove OptIn annotation for cohort syncing ([#35](https://github.com/amplitude/experiment-jvm-server/issues/35)) ([b5e0684](https://github.com/amplitude/experiment-jvm-server/commit/b5e06848e2238fa450721e8c16e4b95d292f13e0)) + + +### Features + +* add flag push ([#30](https://github.com/amplitude/experiment-jvm-server/issues/30)) ([27caeb5](https://github.com/amplitude/experiment-jvm-server/commit/27caeb59e47a710e6a5c682c90e8f3240efce881)) + ## [1.4.4](https://github.com/amplitude/experiment-jvm-server/compare/1.4.3...1.4.4) (2024-10-02) diff --git a/build.gradle.kts b/build.gradle.kts index 6248030..29a6647 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -33,7 +33,7 @@ dependencies { // Publishing group = "com.amplitude" -version = "1.4.4" +version = "1.5.0" nexusPublishing { repositories { diff --git a/src/main/kotlin/Experiment.kt b/src/main/kotlin/Experiment.kt index 83a538b..0b5c4c8 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.4" +internal const val LIBRARY_VERSION = "1.5.0" object Experiment {