From b6e978c983c53c2694fe108e4cd70abcab8f8f7f Mon Sep 17 00:00:00 2001 From: amplitude-sdk-bot Date: Tue, 5 Nov 2024 18:49:59 +0000 Subject: [PATCH] chore(release): 1.8.0 [skip ci] # [1.8.0](https://github.com/amplitude/experiment-go-server/compare/v1.7.0...v1.8.0) (2024-11-05) ### Features * add flag push ([#30](https://github.com/amplitude/experiment-go-server/issues/30)) ([62dad32](https://github.com/amplitude/experiment-go-server/commit/62dad32d54803140893601024e6d3e2c0b087b72)) * support non-string group prop values ([#31](https://github.com/amplitude/experiment-go-server/issues/31)) ([7064c5d](https://github.com/amplitude/experiment-go-server/commit/7064c5d3376a33e321e7016ed10907afb660d998)) --- CHANGELOG.md | 8 ++++++++ pkg/experiment/types.go | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d05eef..2dcd40a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# [1.8.0](https://github.com/amplitude/experiment-go-server/compare/v1.7.0...v1.8.0) (2024-11-05) + + +### Features + +* add flag push ([#30](https://github.com/amplitude/experiment-go-server/issues/30)) ([62dad32](https://github.com/amplitude/experiment-go-server/commit/62dad32d54803140893601024e6d3e2c0b087b72)) +* support non-string group prop values ([#31](https://github.com/amplitude/experiment-go-server/issues/31)) ([7064c5d](https://github.com/amplitude/experiment-go-server/commit/7064c5d3376a33e321e7016ed10907afb660d998)) + # [1.7.0](https://github.com/amplitude/experiment-go-server/compare/v1.6.0...v1.7.0) (2024-08-27) diff --git a/pkg/experiment/types.go b/pkg/experiment/types.go index 89aa425..76c3b18 100644 --- a/pkg/experiment/types.go +++ b/pkg/experiment/types.go @@ -1,6 +1,6 @@ package experiment -const VERSION = "1.7.0" +const VERSION = "1.8.0" type User struct { UserId string `json:"user_id,omitempty"`