From 128014fc0921fb789cc0e6c43f5b511288d291bb Mon Sep 17 00:00:00 2001 From: amplitude-sdk-bot Date: Fri, 27 Jan 2023 22:55:02 +0000 Subject: [PATCH] chore(release): 1.0.0 [skip ci] # 1.0.0 (2023-01-27) ### Bug Fixes * add benchmarking tests, update core version ([80b8723](https://github.com/amplitude/experiment-jvm-server/commit/80b87236d0b053eb8cef084b8ddf4502cc5a8cc6)) * dont return default variant ([556fca5](https://github.com/amplitude/experiment-jvm-server/commit/556fca5f3090320b347883bcffb25844733be433)) * fix publish command ([696f4c3](https://github.com/amplitude/experiment-jvm-server/commit/696f4c38374471708943992a18dd19ecb33276d6)) * fix publishing config ([4b939cd](https://github.com/amplitude/experiment-jvm-server/commit/4b939cd067e35fd1b94eb5c80411e0eccb8c0ee2)) * lint; update publishing ([146f581](https://github.com/amplitude/experiment-jvm-server/commit/146f58146197b55e1a1f6fd737fc9fff7a0b59da)) * only call enable cohort sync once, more logging ([4308835](https://github.com/amplitude/experiment-jvm-server/commit/430883539e431e2db8a29ef1b7722a28e334d52f)) * publishing via release action ([4d7065e](https://github.com/amplitude/experiment-jvm-server/commit/4d7065eb553bcef51fa428d797631f038e2fcd97)) * set java source compatibility to 1.8 ([7f253c9](https://github.com/amplitude/experiment-jvm-server/commit/7f253c9e41ac0dcb42f6788600548f2f58517227)) * update core version ([af779d3](https://github.com/amplitude/experiment-jvm-server/commit/af779d3bb2f76607f53ca6df88b4c17ab408c118)) * update readme ([3880cad](https://github.com/amplitude/experiment-jvm-server/commit/3880cadd21b22476a1dc1cb2ab5cf534d2275168)) ### Features * add local evaluation library header ([#3](https://github.com/amplitude/experiment-jvm-server/issues/3)) ([ade1fb5](https://github.com/amplitude/experiment-jvm-server/commit/ade1fb5758ccbf7e1b45bb3ecdea4346f2dc5840)) * local evaluation cohorts ([#4](https://github.com/amplitude/experiment-jvm-server/issues/4)) ([b9940f1](https://github.com/amplitude/experiment-jvm-server/commit/b9940f15c39bbbcd1f2d3be935e2af08b1abc909)) --- CHANGELOG.md | 22 ++++++++++++++++++++++ build.gradle.kts | 2 +- src/main/kotlin/Experiment.kt | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2a5680..281b1e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +# 1.0.0 (2023-01-27) + + +### Bug Fixes + +* add benchmarking tests, update core version ([80b8723](https://github.com/amplitude/experiment-jvm-server/commit/80b87236d0b053eb8cef084b8ddf4502cc5a8cc6)) +* dont return default variant ([556fca5](https://github.com/amplitude/experiment-jvm-server/commit/556fca5f3090320b347883bcffb25844733be433)) +* fix publish command ([696f4c3](https://github.com/amplitude/experiment-jvm-server/commit/696f4c38374471708943992a18dd19ecb33276d6)) +* fix publishing config ([4b939cd](https://github.com/amplitude/experiment-jvm-server/commit/4b939cd067e35fd1b94eb5c80411e0eccb8c0ee2)) +* lint; update publishing ([146f581](https://github.com/amplitude/experiment-jvm-server/commit/146f58146197b55e1a1f6fd737fc9fff7a0b59da)) +* only call enable cohort sync once, more logging ([4308835](https://github.com/amplitude/experiment-jvm-server/commit/430883539e431e2db8a29ef1b7722a28e334d52f)) +* publishing via release action ([4d7065e](https://github.com/amplitude/experiment-jvm-server/commit/4d7065eb553bcef51fa428d797631f038e2fcd97)) +* set java source compatibility to 1.8 ([7f253c9](https://github.com/amplitude/experiment-jvm-server/commit/7f253c9e41ac0dcb42f6788600548f2f58517227)) +* update core version ([af779d3](https://github.com/amplitude/experiment-jvm-server/commit/af779d3bb2f76607f53ca6df88b4c17ab408c118)) +* update readme ([3880cad](https://github.com/amplitude/experiment-jvm-server/commit/3880cadd21b22476a1dc1cb2ab5cf534d2275168)) + + +### Features + +* add local evaluation library header ([#3](https://github.com/amplitude/experiment-jvm-server/issues/3)) ([ade1fb5](https://github.com/amplitude/experiment-jvm-server/commit/ade1fb5758ccbf7e1b45bb3ecdea4346f2dc5840)) +* local evaluation cohorts ([#4](https://github.com/amplitude/experiment-jvm-server/issues/4)) ([b9940f1](https://github.com/amplitude/experiment-jvm-server/commit/b9940f15c39bbbcd1f2d3be935e2af08b1abc909)) + ## [0.0.4](https://github.com/amplitude/experiment-jvm-server/compare/0.0.3...0.0.4) (2022-05-20) diff --git a/build.gradle.kts b/build.gradle.kts index e4567db..93bc704 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -29,7 +29,7 @@ dependencies { // Publishing group = "com.amplitude" -version = "1.0.0-beta.7" +version = "1.0.0" nexusPublishing { repositories { diff --git a/src/main/kotlin/Experiment.kt b/src/main/kotlin/Experiment.kt index 0799cf7..cf2e319 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.0.0-beta.7" +internal const val LIBRARY_VERSION = "1.0.0" object Experiment {