Skip to content

Commit a53eeeb

Browse files
authored
chore: Prepare for 2.1.0 release (#54)
1 parent 381f54d commit a53eeeb

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [2.1.0] - July 8th, 2020
11+
Upgrade `@optimizely/optimizely-sdk` to 4.1.0. See [@optimizely/optimizely-sdk Release 4.1.0](https://github.com/optimizely/javascript-sdk/releases/tag/v4.1.0) for more details.
12+
13+
## New Features
14+
- Add support for JSON feature variables ([#53](https://github.com/optimizely/react-sdk/pull/53))
15+
1016
## [2.0.1] - May 22nd, 2020
1117

1218
### Bug Fixes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/react-sdk",
3-
"version": "2.0.1",
3+
"version": "2.1.0",
44
"description": "React SDK for Optimizely Full Stack and Optimizely Rollouts",
55
"homepage": "https://github.com/optimizely/react-sdk",
66
"license": "Apache-2.0",

src/client.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ describe('ReactSDKClient', () => {
8989
expect(createInstanceSpy).toBeCalledWith({
9090
...config,
9191
clientEngine: 'react-sdk',
92-
clientVersion: '2.0.1',
92+
clientVersion: '2.1.0',
9393
});
9494
});
9595

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export type OnReadyResult = {
3535
};
3636

3737
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
38-
const REACT_SDK_CLIENT_VERSION = '2.0.1';
38+
const REACT_SDK_CLIENT_VERSION = '2.1.0';
3939

4040
export interface ReactSDKClient extends optimizely.Client {
4141
user: UserContext;

0 commit comments

Comments
 (0)