Skip to content

Commit b3b9ed7

Browse files
authored
chore: prep for release 2.9.0 (#171)
1 parent 13c8626 commit b3b9ed7

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+
- None yet!
11+
12+
## [2.9.0] - June 15, 2022
13+
1014
### Bug fixes
1115
- addresses issues [#152](https://github.com/optimizely/react-sdk/issues/152) and [#134](https://github.com/optimizely/react-sdk/issues/134): Gracefully returns pessimistic default values when hooks fail instead of throwing an error.
1216
- fixed issue [#156](https://github.com/optimizely/react-sdk/issues/156) - Added children prop to make the SDK compatible with React 18([#158](https://github.com/optimizely/react-sdk/pull/158)).

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.8.1",
3+
"version": "2.9.0",
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.8.1',
110+
clientVersion: '2.9.0',
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.8.1';
45+
const REACT_SDK_CLIENT_VERSION = '2.9.0';
4646

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

0 commit comments

Comments
 (0)