Skip to content

Commit bfc8a84

Browse files
authored
Prep for Release 2.9.1 (#173)
1 parent 1063f4f commit bfc8a84

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
- None yet!
11+
12+
## [2.9.1] - July 20, 2022
13+
1014
### Bug fixes
11-
- Fixed Redundant activate calls in useExperiment hook in a scenario.
15+
- Fixed Redundant activate calls in useExperiment hook for one scenario.
1216

1317
## [2.9.0] - June 15, 2022
1418

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.9.0",
3+
"version": "2.9.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
@@ -107,7 +107,7 @@ describe('ReactSDKClient', () => {
107107
expect(createInstanceSpy).toBeCalledWith({
108108
...config,
109109
clientEngine: 'react-sdk',
110-
clientVersion: '2.9.0',
110+
clientVersion: '2.9.1',
111111
});
112112
});
113113

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export type OnReadyResult = {
4242
};
4343

4444
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
45-
const REACT_SDK_CLIENT_VERSION = '2.9.0';
45+
const REACT_SDK_CLIENT_VERSION = '2.9.1';
4646

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

0 commit comments

Comments
 (0)