Skip to content

Commit ff004c3

Browse files
authored
Prepare for 2.6.0 (#113)
1 parent 6f4e278 commit ff004c3

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ 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

88
## [Unreleased]
9-
- Upgrade `@optimizely/optimizely-sdk` to [4.6.0](https://github.com/optimizely/javascript-sdk/releases/tag/v4.6.0)
9+
10+
## [2.6.0] - June 8th, 2021
11+
Upgrade `@optimizely/optimizely-sdk` to [4.6.0](https://github.com/optimizely/javascript-sdk/releases/tag/v4.6.0)
12+
- Added support for multiple concurrent prioritized experiments per flag. See [@optimizely/optimizely-sdk Release 4.6.0](https://github.com/optimizely/javascript-sdk/releases/tag/v4.6.0) for more details.
1013

1114
## [2.5.0] - March 12th, 2021
1215
- Upgrade `@optimizely/optimizely-sdk` to [4.5.1](https://github.com/optimizely/javascript-sdk/releases/tag/v4.5.1)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/react-sdk",
3-
"version": "2.5.0",
3+
"version": "2.6.0",
44
"description": "React SDK for Optimizely Full Stack and Optimizely Rollouts",
55
"homepage": "https://github.com/optimizely/react-sdk",
66
"license": "Apache-2.0",

src/client.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ describe('ReactSDKClient', () => {
100100
expect(createInstanceSpy).toBeCalledWith({
101101
...config,
102102
clientEngine: 'react-sdk',
103-
clientVersion: '2.5.0',
103+
clientVersion: '2.6.0',
104104
});
105105
});
106106

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export type OnReadyResult = {
3737
};
3838

3939
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
40-
const REACT_SDK_CLIENT_VERSION = '2.5.0';
40+
const REACT_SDK_CLIENT_VERSION = '2.6.0';
4141

4242
export interface ReactSDKClient extends Omit<optimizely.Client, 'createUserContext'> {
4343
user: UserInfo;

0 commit comments

Comments
 (0)