Skip to content

Commit

Permalink
chore(release): 1.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# 1.0.0 (2023-01-27)

### Bug Fixes

* add benchmarking tests, update core version ([80b8723](80b8723))
* dont return default variant ([556fca5](556fca5))
* fix publish command ([696f4c3](696f4c3))
* fix publishing config ([4b939cd](4b939cd))
* lint; update publishing ([146f581](146f581))
* only call enable cohort sync once, more logging ([4308835](4308835))
* publishing via release action ([4d7065e](4d7065e))
* set java source compatibility to 1.8 ([7f253c9](7f253c9))
* update core version ([af779d3](af779d3))
* update readme ([3880cad](3880cad))

### Features

* add local evaluation library header ([#3](#3)) ([ade1fb5](ade1fb5))
* local evaluation cohorts ([#4](#4)) ([b9940f1](b9940f1))
  • Loading branch information
amplitude-sdk-bot committed Jan 27, 2023
1 parent ab59ae9 commit 128014f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies {
// Publishing

group = "com.amplitude"
version = "1.0.0-beta.7"
version = "1.0.0"

nexusPublishing {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/Experiment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down

0 comments on commit 128014f

Please sign in to comment.