Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6343b45

Browse files
committedMar 2, 2021
Prepare for 2.4.3 release (#104)
1 parent ab4c922 commit 6343b45

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
@@ -91,7 +91,7 @@ describe('ReactSDKClient', () => {
9191
expect(createInstanceSpy).toBeCalledWith({
9292
...config,
9393
clientEngine: 'react-sdk',
94-
clientVersion: '2.4.2',
94+
clientVersion: '2.4.3',
9595
});
9696
});
9797

‎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.4.2';
38+
const REACT_SDK_CLIENT_VERSION = '2.4.3';
3939

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

0 commit comments

Comments
 (0)
Please sign in to comment.