diff --git a/CHANGELOG.MD b/CHANGELOG.MD index abac59a28..8c5c633ee 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -7,6 +7,12 @@ 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.3.0-beta1] - June 16th, 2020 +## New Features +- Add support for JSON feature variables ([#250](https://github.com/optimizely/go-sdk/pull/250), [#251](https://github.com/optimizely/go-sdk/pull/251), [#253](https://github.com/optimizely/go-sdk/pull/253)) +- Add support for authenticated datafiles ([#267](https://github.com/optimizely/go-sdk/pull/267)) +- Expose ability to customize URL for event dispatcher. ([#268](https://github.com/optimizely/go-sdk/pull/268)) + ## [1.2.0] - May 21st, 2020 ## New Features - feat: support for multi-rule rollouts [#247](https://github.com/optimizely/go-sdk/pull/247) diff --git a/pkg/event/version.go b/pkg/event/version.go index f6ca90f8d..1d576c3ad 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.2.0" +var Version = "1.3.0-beta1" // ClientName is the name of the client var ClientName = "go-sdk"