Skip to content

Commit

Permalink
[FSSDK-9984] chore: prepare for release v3.1.0 (#257)
Browse files Browse the repository at this point in the history
* build: increment the semantic version

* docs: update changelog.md

* docs: PR review adjustment to CHANGELOG

---------

Co-authored-by: Mike Chu <michael.chu@optmizely.com>
  • Loading branch information
mikechu-optimizely and Mike Chu authored Apr 9, 2024
1 parent fae169f commit 3389cd6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [3.1.0] - April 9, 2024

### Bug Fixes
- Error initializing client. The core client or user promise(s) rejected.
([#255](https://github.com/optimizely/react-sdk/pull/255))
- Unable to determine if feature "{your-feature-key}" is enabled because User ID is not set([#255](https://github.com/optimizely/react-sdk/pull/255))

### Changed
- Bumped Optimizely JS SDK version in use ([#255](https://github.com/optimizely/react-sdk/pull/255))
- Resolve dependabot dependency vulnerabilities ([#245](https://github.com/optimizely/react-sdk/pull/245), [#247](https://github.com/optimizely/react-sdk/pull/247), [#248](https://github.com/optimizely/react-sdk/pull/248), [#251](https://github.com/optimizely/react-sdk/pull/251), [#253](https://github.com/optimizely/react-sdk/pull/253))
- Add node versions during testing ([#249](https://github.com/optimizely/react-sdk/pull/249))

## [3.0.1] - February 27, 2024

### Changed
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.0.1",
"version": "3.1.0",
"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 @@ -127,7 +127,7 @@ describe('ReactSDKClient', () => {
expect(createInstanceSpy).toBeCalledWith({
...config,
clientEngine: 'react-sdk',
clientVersion: '3.0.1',
clientVersion: '3.1.0',
});
});

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.0.1';
const REACT_SDK_CLIENT_VERSION = '3.1.0';

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

0 comments on commit 3389cd6

Please sign in to comment.