Skip to content

Commit 62f8942

Browse files
authored
Prepare for 2.6.3 (#119)
1 parent a30e053 commit 62f8942

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [2.6.3] - July 29th, 2021
11+
1012
### Bug fixes
11-
- Update `VariableValuesObject` type to handle JSON type variable ([#118](https://github.com/optimizely/react-sdk/pull/118)).
13+
- Update `VariableValuesObject` type to handle JSON type variable and avoid TS compiler error when specifying variable type ([#118](https://github.com/optimizely/react-sdk/pull/118)).
1214

1315
## [2.6.2] - July 15th, 2021
1416

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.6.2",
3+
"version": "2.6.3",
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
@@ -100,7 +100,7 @@ describe('ReactSDKClient', () => {
100100
expect(createInstanceSpy).toBeCalledWith({
101101
...config,
102102
clientEngine: 'react-sdk',
103-
clientVersion: '2.6.2',
103+
clientVersion: '2.6.3',
104104
});
105105
});
106106

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export type OnReadyResult = {
3737
};
3838

3939
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
40-
const REACT_SDK_CLIENT_VERSION = '2.6.2';
40+
const REACT_SDK_CLIENT_VERSION = '2.6.3';
4141

4242
export interface ReactSDKClient extends Omit<optimizely.Client, 'createUserContext'> {
4343
user: UserInfo;

0 commit comments

Comments
 (0)