Skip to content

Commit

Permalink
[FSSDK-9871] prepare for release (#269)
Browse files Browse the repository at this point in the history
* [FSSDK-9871] prepare for release

* [FSSDK-9871] fixing semver
  • Loading branch information
junaed-optimizely authored Jul 10, 2024
1 parent e13f7a6 commit 234a5bf
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.2.0] - July 10, 2024

### New Features
- The new `useTrackEvent` hook is now available for tracking events within functional components. This hook offers all the existing track event functionalities provided by the SDK. ([#268](https://github.com/optimizely/react-sdk/pull/268))

## [3.1.2] - July 2, 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.1.2",
"version": "3.2.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 @@ -128,7 +128,7 @@ describe('ReactSDKClient', () => {
expect(createInstanceSpy).toBeCalledWith({
...config,
clientEngine: 'react-sdk',
clientVersion: '3.1.2',
clientVersion: '3.2.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.1.2';
const REACT_SDK_CLIENT_VERSION = '3.2.0';

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

0 comments on commit 234a5bf

Please sign in to comment.