Skip to content

Commit 026a21c

Browse files
author
Derek Hammond
authored
chore(optimizely-sdk): Prepare for 3.6.0-alpha.1 release (#422)
## Summary - Bumps the version to `3.6.0-alpha.1` - Updates changelog
1 parent caf36ae commit 026a21c

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

packages/optimizely-sdk/CHANGELOG.MD

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [3.6.0-alpha.1] - March 4, 2020
11+
12+
### New Features
13+
1014
- Changed `track()` to log a warning instead of an error when the event isn't in the datafile ([#418](https://github.com/optimizely/javascript-sdk/pull/418))
1115

1216
## [3.5.0] - February 20th, 2020

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, '3.5.0');
151+
assert.equal(optlyInstance.clientVersion, '3.6.0-alpha.1');
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
@@ -92,7 +92,7 @@ describe('optimizelyFactory', function() {
9292
optlyInstance.onReady().catch(function() {});
9393

9494
assert.instanceOf(optlyInstance, Optimizely);
95-
assert.equal(optlyInstance.clientVersion, '3.5.0');
95+
assert.equal(optlyInstance.clientVersion, '3.6.0-alpha.1');
9696
});
9797

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

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

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

9494
assert.instanceOf(optlyInstance, Optimizely);
95-
assert.equal(optlyInstance.clientVersion, '3.5.0');
95+
assert.equal(optlyInstance.clientVersion, '3.6.0-alpha.1');
9696
});
9797

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ exports.CONTROL_ATTRIBUTES = {
174174
exports.JAVASCRIPT_CLIENT_ENGINE = 'javascript-sdk';
175175
exports.NODE_CLIENT_ENGINE = 'node-sdk';
176176
exports.REACT_CLIENT_ENGINE = 'react-sdk';
177-
exports.NODE_CLIENT_VERSION = '3.5.0';
177+
exports.NODE_CLIENT_VERSION = '3.6.0-alpha.1';
178178

179179
exports.VALID_CLIENT_ENGINES = [
180180
exports.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": "3.5.0",
3+
"version": "3.6.0-alpha.1",
44
"description": "JavaScript SDK for Optimizely X Full Stack",
55
"main": "lib/index.node.js",
66
"browser": "lib/index.browser.js",

0 commit comments

Comments
 (0)