Skip to content

Commit 145ddc3

Browse files
mikechu-optimizelyMike Chu
and
Mike Chu
authored
[FSSDK-9623] chore: prep 3.0.1 release (#243)
* chore: bump React SDK version * docs: update CHANGELOG * docs: update copyright year --------- Co-authored-by: Mike Chu <[email protected]>
1 parent 3f443a9 commit 145ddc3

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

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

3+
## [3.0.1] - February 27, 2024
4+
5+
### Changed
6+
- Updated `@optimizely/optimizely-sdk` to version `5.0.1` ([#242](https://github.com/optimizely/react-sdk/pull/242))
7+
- Updated Dependabot alerts ([#239](https://github.com/optimizely/react-sdk/pull/239), [#241](https://github.com/optimizely/react-sdk/pull/241))
8+
39
## [3.0.0] - January 24, 2024
410

511
### New Features

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.0.0",
3+
"version": "3.0.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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019-2023, Optimizely
2+
* Copyright 2019-2024, Optimizely
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -123,7 +123,7 @@ describe('ReactSDKClient', () => {
123123
expect(createInstanceSpy).toBeCalledWith({
124124
...config,
125125
clientEngine: 'react-sdk',
126-
clientVersion: '3.0.0',
126+
clientVersion: '3.0.1',
127127
});
128128
});
129129

src/client.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019-2023, Optimizely
2+
* Copyright 2019-2024, Optimizely
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ export interface OnReadyResult extends ResolveResult {
4343
}
4444

4545
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
46-
const REACT_SDK_CLIENT_VERSION = '3.0.0';
46+
const REACT_SDK_CLIENT_VERSION = '3.0.1';
4747

4848
export const DefaultUser: UserInfo = {
4949
id: null,

0 commit comments

Comments
 (0)