Skip to content

Commit

Permalink
[FSSDK-9654] chore: Prep for 3.0.0 beta2 release (#228)
Browse files Browse the repository at this point in the history
* chore: bump package versions

* doc: Update changelog
  • Loading branch information
mikechu-optimizely authored Dec 26, 2023
1 parent 38f3a29 commit abf633d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

# [3.0.0-beta] - September 22, 2023
## [3.0.0-beta2] - December 26, 2023

### Bug fixes
- Tag release correctly during publishing
- Updated datafile variable in README
- AAT gap fill
- Rendering `default` OptimizelyVariation when not last
- OptimizelyVariation with default and variation props set

## [3.0.0-beta] - September 22, 2023

### New Features

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

Expand Down
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export interface OnReadyResult extends ResolveResult {
}

const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
const REACT_SDK_CLIENT_VERSION = '3.0.0-beta';
const REACT_SDK_CLIENT_VERSION = '3.0.0-beta2';

const default_user: UserInfo = {
id: null,
Expand Down

0 comments on commit abf633d

Please sign in to comment.