Skip to content

Commit bec6f26

Browse files
authored
Prepare for 4.6.0 release (#674)
1 parent 377ffc1 commit bec6f26

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

packages/optimizely-sdk/CHANGELOG.MD

+7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ 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+
10+
## [4.6.0] - May 27, 2021
11+
12+
### New Features
13+
- Added support for multiple concurrent prioritized experiments per flag ([#664](https://github.com/optimizely/javascript-sdk/pull/664))
14+
15+
### Bug fixes
916
- Bumped `datafile-manager` and `event-processor` packages to version `0.8.1`.
1017

1118
## [4.5.1] - March 2, 2021

packages/optimizely-sdk/lib/index.browser.tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ describe('javascript-sdk', function() {
148148
optlyInstance.onReady().catch(function() {});
149149

150150
assert.instanceOf(optlyInstance, Optimizely);
151-
assert.equal(optlyInstance.clientVersion, '4.5.1');
151+
assert.equal(optlyInstance.clientVersion, '4.6.0');
152152
});
153153

154154
it('should set the JavaScript client engine and version', function() {

packages/optimizely-sdk/lib/index.node.tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ describe('optimizelyFactory', function() {
9090
optlyInstance.onReady().catch(function() {});
9191

9292
assert.instanceOf(optlyInstance, Optimizely);
93-
assert.equal(optlyInstance.clientVersion, '4.5.1');
93+
assert.equal(optlyInstance.clientVersion, '4.6.0');
9494
});
9595

9696
describe('event processor configuration', function() {

packages/optimizely-sdk/lib/index.react_native.tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ describe('javascript-sdk/react-native', function() {
8989
optlyInstance.onReady().catch(function() {});
9090

9191
assert.instanceOf(optlyInstance, Optimizely);
92-
assert.equal(optlyInstance.clientVersion, '4.5.1');
92+
assert.equal(optlyInstance.clientVersion, '4.6.0');
9393
});
9494

9595
it('should set the Javascript client engine and version', function() {

packages/optimizely-sdk/lib/utils/enums/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export const CONTROL_ATTRIBUTES = {
176176
export const JAVASCRIPT_CLIENT_ENGINE = 'javascript-sdk';
177177
export const NODE_CLIENT_ENGINE = 'node-sdk';
178178
export const REACT_CLIENT_ENGINE = 'react-sdk';
179-
export const NODE_CLIENT_VERSION = '4.5.1';
179+
export const NODE_CLIENT_VERSION = '4.6.0';
180180

181181
export const VALID_CLIENT_ENGINES = [
182182
NODE_CLIENT_ENGINE,

packages/optimizely-sdk/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/optimizely-sdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/optimizely-sdk",
3-
"version": "4.5.1",
3+
"version": "4.6.0",
44
"description": "JavaScript SDK for Optimizely X Full Stack",
55
"module": "dist/optimizely.browser.es.min.js",
66
"main": "dist/optimizely.node.min.js",

0 commit comments

Comments
 (0)