Skip to content

Commit 7e9bda9

Browse files
[FSSDK-10554] prep for release (#277)
1 parent 9d08ac9 commit 7e9bda9

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

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

3+
## [3.2.2] - Aug 21, 2024
4+
5+
### Bug fixes
6+
- Multiple instances of the Logger make the log system unconfigurable - bug fix. ([#276](https://github.com/optimizely/react-sdk/pull/276))
7+
38
## [3.2.1] - Aug 15, 2024
49

510
### Bug fixes

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.2.1",
3+
"version": "3.2.2",
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ describe('ReactSDKClient', () => {
128128
expect(createInstanceSpy).toBeCalledWith({
129129
...config,
130130
clientEngine: 'react-sdk',
131-
clientVersion: '3.2.1',
131+
clientVersion: '3.2.2',
132132
});
133133
});
134134

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export interface OnReadyResult extends ResolveResult {
4747
}
4848

4949
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
50-
const REACT_SDK_CLIENT_VERSION = '3.2.1';
50+
const REACT_SDK_CLIENT_VERSION = '3.2.2';
5151

5252
export const DefaultUser: UserInfo = {
5353
id: null,

0 commit comments

Comments
 (0)