Skip to content

Commit 996a18d

Browse files
author
Michael Ng
authored
chore(release): Bump version and add release notes for 0.2.0. (#98)
1 parent 0e9359e commit 996a18d

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.MD

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
Changes that have landed but are not yet released.
99
- Support for running full feature tests with the SDK.
1010

11+
## [0.2.0] - September 11th, 2019
12+
This release of the SDK introduces Feature Management capabilities for running both Feature Rollouts as well as Feature Tests using Optimizely Feature Management.
13+
14+
### New Features
15+
- Introduces feature variable getters via `GetFeatureVariable*` for parameterizing your feature tests.
16+
- Introduces the `Track` API call for sending conversion events to Optimizely.
17+
- The `IsFeatureEnabled` API will now send impression events if there is a feature test attached to the feature being accessed.
18+
19+
### Breaking Changes
20+
- Vendored packages have been removed in favor of declaring dependencies and their versions using `go.mod`.
21+
1122
## [0.1.0-beta] - August 23rd, 2019
1223
This is the initial release of the SDK, which includes support for running Feature Rollouts using Optimizely Feature Management.
1324

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ module mymodule
9595
go 1.12
9696
9797
require (
98-
github.com/optimizely/go-sdk v0.1.0
98+
github.com/optimizely/go-sdk v0.2.0
9999
)
100100
```
101101

102102
If you are already using `go.mod` in your application you can run the following:
103103

104104
```
105-
go mod edit -require github.com/optimizely/go-sdk@v0.1.0
105+
go mod edit -require github.com/optimizely/go-sdk@v0.2.0
106106
```
107107

108108
NOTE:

optimizely/version.go

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

2020
// Version is the current version of the client
21-
const Version = "0.1.0-beta"
21+
const Version = "0.2.0"
2222

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

0 commit comments

Comments
 (0)