Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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.0.0] - January 9th, 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)
- 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)
- 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
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
const Version = "1.0.0-rc1"
const Version = "1.0.0"

// ClientName is the name of the client
const ClientName = "go-sdk"