Skip to content

Commit abf633d

Browse files
[FSSDK-9654] chore: Prep for 3.0.0 beta2 release (#228)
* chore: bump package versions * doc: Update changelog
1 parent 38f3a29 commit abf633d

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
# [3.0.0-beta] - September 22, 2023
8+
## [3.0.0-beta2] - December 26, 2023
9+
10+
### Bug fixes
11+
- Tag release correctly during publishing
12+
- Updated datafile variable in README
13+
- AAT gap fill
14+
- Rendering `default` OptimizelyVariation when not last
15+
- OptimizelyVariation with default and variation props set
16+
17+
## [3.0.0-beta] - September 22, 2023
918

1019
### New Features
1120

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-beta",
3+
"version": "3.0.0-beta2",
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
@@ -122,7 +122,7 @@ describe('ReactSDKClient', () => {
122122
expect(createInstanceSpy).toBeCalledWith({
123123
...config,
124124
clientEngine: 'react-sdk',
125-
clientVersion: '3.0.0-beta',
125+
clientVersion: '3.0.0-beta2',
126126
});
127127
});
128128

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export interface OnReadyResult extends ResolveResult {
4242
}
4343

4444
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
45-
const REACT_SDK_CLIENT_VERSION = '3.0.0-beta';
45+
const REACT_SDK_CLIENT_VERSION = '3.0.0-beta2';
4646

4747
const default_user: UserInfo = {
4848
id: null,

0 commit comments

Comments
 (0)