From 810b031a31104981d92d299db3ffc2ed8d73c691 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Mon, 30 Dec 2019 16:27:11 -0800 Subject: [PATCH 1/3] chore: Prepare 1.0.0 release. --- CHANGELOG.MD | 15 +++++++++++++++ pkg/event/version.go | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 27cb8b478..217fa8862 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -7,6 +7,21 @@ 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.0.0] - January 3rd, 2020 +This is the General Availability release of the Go SDK. + +## New Features +- feat(onTrack): Added onTrack callback. [#198](https://github.com/optimizely/go-sdk/pull/198) +- feat: Add observability metrics for event queue. [#211](https://github.com/optimizely/go-sdk/pull/211) +- feat: Implement OptimizelyConfig API. [#216](https://github.com/optimizely/go-sdk/pull/216) + +## Bug Fixes +- fix: Revert signature changes to PollingProjectConfigManager. [#209](https://github.com/optimizely/go-sdk/pull/209) + +## Breaking Changes +- refac: Execution context. [#212](https://github.com/optimizely/go-sdk/pull/212) +- refac(config: Move config interfaces back into config package. [#213](https://github.com/optimizely/go-sdk/pull/213) + ## [1.0.0-rc1] - December 4th, 2019 ## New Features diff --git a/pkg/event/version.go b/pkg/event/version.go index db42cb4b7..9e386039a 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 -const Version = "1.0.0-rc1" +const Version = "1.0.0" // ClientName is the name of the client const ClientName = "go-sdk" From 3cd22146ef494bd28f4194ed1085dd2269842c03 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 3 Jan 2020 09:17:54 -0800 Subject: [PATCH 2/3] update date. --- CHANGELOG.MD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 217fa8862..dbed19f45 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -7,7 +7,7 @@ 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.0.0] - January 3rd, 2020 +## [1.0.0] - January 9th, 2020 This is the General Availability release of the Go SDK. ## New Features From 73caa0bf9e1c27c6dc608ccaedf454668c7155a6 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Thu, 9 Jan 2020 11:29:39 -0800 Subject: [PATCH 3/3] chore: Include additional commits. --- CHANGELOG.MD | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index dbed19f45..ad14b7897 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -14,9 +14,11 @@ This is the General Availability release of the Go SDK. - feat(onTrack): Added onTrack callback. [#198](https://github.com/optimizely/go-sdk/pull/198) - feat: Add observability metrics for event queue. [#211](https://github.com/optimizely/go-sdk/pull/211) - feat: Implement OptimizelyConfig API. [#216](https://github.com/optimizely/go-sdk/pull/216) +- feat: Add observability metrics for event queue. [#223](https://github.com/optimizely/go-sdk/pull/223) ## Bug Fixes - fix: Revert signature changes to PollingProjectConfigManager. [#209](https://github.com/optimizely/go-sdk/pull/209) +- fix(notification): race detected send notification issue. [#222](https://github.com/optimizely/go-sdk/pull/222) ## Breaking Changes - refac: Execution context. [#212](https://github.com/optimizely/go-sdk/pull/212)