Skip to content

Commit 931ab96

Browse files
chore: Prepare 1.1.0 release (#240)
* chore: Prepare 1.1.0 release
1 parent 60eeead commit 931ab96

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGELOG.MD

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77
## [Unreleased]
88
Changes that have landed but are not yet released. Changes that have landed but are not yet released.
99

10+
## [1.1.0] - March 6th, 2020
11+
## New Features
12+
- feat: Allow ClientName and Version to be set at compile time. [#227](https://github.com/optimizely/go-sdk/pull/227)
13+
- feat: Add explicit json mappings. [#228](https://github.com/optimizely/go-sdk/pull/228)
14+
- refact(snapshot): Made decisions optional for snapshot entity. [#226](https://github.com/optimizely/go-sdk/pull/226)
15+
- feat: set specific error from default project config manager when CDN returns 403 response [#232](https://github.com/optimizely/go-sdk/pull/232)
16+
- feat: OnEvent should be part of the event processor interface [#233](https://github.com/optimizely/go-sdk/pull/233)
17+
- feat: add valid datafile version check [#234](https://github.com/optimizely/go-sdk/pull/234)
18+
19+
## Bug Fixes
20+
- fix: Properly instantiate event processor with dispatcher. [#239](https://github.com/optimizely/go-sdk/pull/239)
21+
22+
## Breaking Changes
23+
- feat: Return variables as an interface{} from GetAllFeatureVariables. [#235](https://github.com/optimizely/go-sdk/pull/235)
24+
25+
1026
## [1.0.0] - January 9th, 2020
1127
This is the General Availability release of the Go SDK.
1228

pkg/event/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package event
1919

2020
// Version is the current version of the client
21-
var Version = "1.0.0"
21+
var Version = "1.1.0"
2222

2323
// ClientName is the name of the client
2424
var ClientName = "go-sdk"

0 commit comments

Comments
 (0)