Skip to content

Commit 1badf9f

Browse files
authored
chore: Prepare for 2.0.1 release (#51)
1 parent de10571 commit 1badf9f

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

+6
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.0.1] - May 22nd, 2020
11+
12+
### Bug Fixes
13+
14+
- Export `useExperiment` hook from this package ([#50](https://github.com/optimizely/react-sdk/pull/50))
15+
1016
## [2.0.0] - April 30th, 2020
1117

1218
Upgrade `@optimizely/optimizely-sdk` to 4.0.0. See [@optimizely/optimizely-sdk Release 4.0.0](https://github.com/optimizely/javascript-sdk/releases/tag/v4.0.0) for more details.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/react-sdk",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ describe('ReactSDKClient', () => {
8686
expect(createInstanceSpy).toBeCalledWith({
8787
...config,
8888
clientEngine: 'react-sdk',
89-
clientVersion: '2.0.0',
89+
clientVersion: '2.0.1',
9090
});
9191
});
9292

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export type OnReadyResult = {
3434
};
3535

3636
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
37-
const REACT_SDK_CLIENT_VERSION = '2.0.0';
37+
const REACT_SDK_CLIENT_VERSION = '2.0.1';
3838

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

0 commit comments

Comments
 (0)