Skip to content

Commit f8ebe63

Browse files
committed
Prepare for 2.4.3 release
1 parent ede1ece commit f8ebe63

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.4.3] - March 2nd, 2021
11+
### Bug fixes
12+
- This version of React SDK depends on [4.4.3](https://github.com/optimizely/javascript-sdk/releases/tag/v4.4.3) of `@optimizely/optimizely-sdk`. The dependency was defined to use the latest available minor version which is no more compatible. Fixed the dependency to use the exact version.
13+
1014
## [2.4.2] - December 11th, 2020
1115
### Bug fixes
1216
- Always recompute decision after resolution of ready promise ([#91](https://github.com/optimizely/react-sdk/pull/91))

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.4.2",
3+
"version": "2.4.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

Lines changed: 1 addition & 1 deletion
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.4.2',
103+
clientVersion: '2.4.3',
104104
});
105105
});
106106

src/client.ts

Lines changed: 1 addition & 1 deletion
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.4.2';
40+
const REACT_SDK_CLIENT_VERSION = '2.4.3';
4141

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

0 commit comments

Comments
 (0)