Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: preparing 1.7.0 release. #323

Merged
merged 2 commits into from
Sep 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pkg/event/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"