Skip to content

Commit

Permalink
[FSSDK-10198] Prepare for release (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
junaed-optimizely authored May 22, 2024
1 parent d2f14bd commit d43cabd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [3.1.1] - May 22, 2024

### Bug Fixes
- ODP integration error. ([#262](https://github.com/optimizely/react-sdk/pull/262))

## [3.1.0] - April 9, 2024

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@optimizely/react-sdk",
"version": "3.1.0",
"version": "3.1.1",
"description": "React SDK for Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts",
"homepage": "https://github.com/optimizely/react-sdk",
"repository": "https://github.com/optimizely/react-sdk",
Expand Down
2 changes: 1 addition & 1 deletion src/client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ describe('ReactSDKClient', () => {
expect(createInstanceSpy).toBeCalledWith({
...config,
clientEngine: 'react-sdk',
clientVersion: '3.1.0',
clientVersion: '3.1.1',
});
});

Expand Down
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface OnReadyResult extends ResolveResult {
}

const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
const REACT_SDK_CLIENT_VERSION = '3.1.0';
const REACT_SDK_CLIENT_VERSION = '3.1.1';

export const DefaultUser: UserInfo = {
id: null,
Expand Down

0 comments on commit d43cabd

Please sign in to comment.