From 948015d8c4a734591403600b1a59dea0fc52f7ba Mon Sep 17 00:00:00 2001 From: yasirfolio3 <39988750+yasirfolio3@users.noreply.github.com> Date: Fri, 17 Sep 2021 22:29:32 +0500 Subject: [PATCH] chore: preparing 1.7.0 release. (#323) --- CHANGELOG.MD | 17 +++++++++++++++++ pkg/event/version.go | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index ab66e515..6fe1a3d3 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] Changes that have landed but are not yet released. Changes that have landed but are not yet released. +## [1.7.0] - September 17, 2021 + +### New Features +* Add new public properties to `OptimizelyConfig`. ([#322](https://github.com/optimizely/go-sdk/pull/322), [#312](https://github.com/optimizely/go-sdk/pull/312)) + - SdkKey + - EnvironmentKey + - Attributes + - Audiences + - Events + - ExperimentRules and DeliveryRules to `OptimizelyFeature` + - Audiences to `OptimizelyExperiment` +* For details, refer to our documentation page: [https://docs.developers.optimizely.com/full-stack/v4.0/docs/optimizelyconfig-go](https://docs.developers.optimizely.com/full-stack/v4.0/docs/optimizelyconfig-go). + +### Deprecated + +* `OptimizelyFeature.ExperimentsMap` of `OptimizelyConfig` is deprecated as of this release. Please use `OptimizelyFeature.ExperimentRules` and `OptimizelyFeature.DeliveryRules`. ([#322](https://github.com/optimizely/go-sdk/pull/322)) + ## [1.6.1] - March 2, 2021 ## Bug Fix - Fix issues for decision variables and reasons. [#309](https://github.com/optimizely/go-sdk/pull/309) diff --git a/pkg/event/version.go b/pkg/event/version.go index 6c46bd8f..e89350b6 100644 --- a/pkg/event/version.go +++ b/pkg/event/version.go @@ -18,7 +18,7 @@ package event // Version is the current version of the client -var Version = "1.6.1" +var Version = "1.7.0" // ClientName is the name of the client var ClientName = "go-sdk"