Skip to content

Commit d43cabd

Browse files
[FSSDK-10198] Prepare for release (#264)
1 parent d2f14bd commit d43cabd

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [3.1.1] - May 22, 2024
4+
5+
### Bug Fixes
6+
- ODP integration error. ([#262](https://github.com/optimizely/react-sdk/pull/262))
7+
38
## [3.1.0] - April 9, 2024
49

510
### Bug Fixes

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/react-sdk",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "React SDK for Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts",
55
"homepage": "https://github.com/optimizely/react-sdk",
66
"repository": "https://github.com/optimizely/react-sdk",

src/client.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ describe('ReactSDKClient', () => {
128128
expect(createInstanceSpy).toBeCalledWith({
129129
...config,
130130
clientEngine: 'react-sdk',
131-
clientVersion: '3.1.0',
131+
clientVersion: '3.1.1',
132132
});
133133
});
134134

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export interface OnReadyResult extends ResolveResult {
4747
}
4848

4949
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
50-
const REACT_SDK_CLIENT_VERSION = '3.1.0';
50+
const REACT_SDK_CLIENT_VERSION = '3.1.1';
5151

5252
export const DefaultUser: UserInfo = {
5353
id: null,

0 commit comments

Comments
 (0)