Skip to content

Commit c4063b1

Browse files
authored
chore: Prepare for 2.4.2 release (#92)
1 parent 4fcea59 commit c4063b1

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+4
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.2] - December 11th, 2020
11+
### Bug fixes
12+
- Always recompute decision after resolution of ready promise ([#91](https://github.com/optimizely/react-sdk/pull/91))
13+
1014
## [2.4.1] - November 23rd, 2020
1115
Upgrade `@optimizely/optimizely-sdk` to [4.4.3](https://github.com/optimizely/javascript-sdk/releases/tag/v4.4.3):
1216
- Allowed using `--isolatedModules` flag in TSConfig file by fixing exports in event processor . See [Issue #84](https://github.com/optimizely/react-sdk/issues/84) and [@optimizely/optimizely-sdk Release 4.4.1](https://github.com/optimizely/javascript-sdk/releases/tag/v4.4.1) 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.4.1",
3+
"version": "2.4.2",
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
@@ -91,7 +91,7 @@ describe('ReactSDKClient', () => {
9191
expect(createInstanceSpy).toBeCalledWith({
9292
...config,
9393
clientEngine: 'react-sdk',
94-
clientVersion: '2.4.1',
94+
clientVersion: '2.4.2',
9595
});
9696
});
9797

src/client.ts

+1-1
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.1';
38+
const REACT_SDK_CLIENT_VERSION = '2.4.2';
3939

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

0 commit comments

Comments
 (0)