Skip to content

Commit

Permalink
[FSSDK-10316] prepare for release (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
junaed-optimizely authored Jul 2, 2024
1 parent 299fbc7 commit 8c937da
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.2] - July 2, 2024

### Changed
- JS SDK bump up for react native polyfill support ([#266](https://github.com/optimizely/react-sdk/pull/266))

## [3.1.1] - May 22, 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.1",
"version": "3.1.2",
"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.1',
clientVersion: '3.1.2',
});
});

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.1';
const REACT_SDK_CLIENT_VERSION = '3.1.2';

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

0 comments on commit 8c937da

Please sign in to comment.