Skip to content

Commit 8affc03

Browse files
authored
chore: prep for release 4.9.1 (#734)
1 parent e98872d commit 8affc03

File tree

8 files changed

+17
-12
lines changed

8 files changed

+17
-12
lines changed

packages/optimizely-sdk/CHANGELOG.MD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [4.9.1] - January 18, 2022
11+
12+
### Bug fixes
13+
- Fixed typescript compilation issue introduced by `4.9.0` ([#733](https://github.com/optimizely/javascript-sdk/pull/733))
14+
1015
## [4.9.0] - January 14, 2022
1116

1217
### New Features

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2016-2020 Optimizely
2+
* Copyright 2016-2020, 2022 Optimizely
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -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.9.0');
151+
assert.equal(optlyInstance.clientVersion, '4.9.1');
152152
});
153153

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2021 Optimizely
2+
* Copyright 2021-2022 Optimizely
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -76,7 +76,7 @@
7676
optlyInstance.onReady().catch(function() {});
7777

7878
assert.instanceOf(optlyInstance, Optimizely);
79-
assert.equal(optlyInstance.clientVersion, '4.9.0');
79+
assert.equal(optlyInstance.clientVersion, '4.9.1');
8080
});
8181
});
8282
});

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2016-2020 Optimizely
2+
* Copyright 2016-2020, 2022 Optimizely
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -90,7 +90,7 @@ describe('optimizelyFactory', function() {
9090
optlyInstance.onReady().catch(function() {});
9191

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

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019-2020 Optimizely
2+
* Copyright 2019-2020, 2022 Optimizely
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -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.9.0');
92+
assert.equal(optlyInstance.clientVersion, '4.9.1');
9393
});
9494

9595
it('should set the React Native JS client engine and javascript SDK version', function() {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* Copyright 2016-2021, Optimizely, Inc. and contributors *
2+
* Copyright 2016-2022, Optimizely, Inc. and contributors *
33
* *
44
* Licensed under the Apache License, Version 2.0 (the "License"); *
55
* you may not use this file except in compliance with the License. *
@@ -182,7 +182,7 @@ export const NODE_CLIENT_ENGINE = 'node-sdk';
182182
export const REACT_CLIENT_ENGINE = 'react-sdk';
183183
export const REACT_NATIVE_CLIENT_ENGINE = 'react-native-sdk';
184184
export const REACT_NATIVE_JS_CLIENT_ENGINE = 'react-native-js-sdk';
185-
export const NODE_CLIENT_VERSION = '4.9.0';
185+
export const NODE_CLIENT_VERSION = '4.9.1';
186186

187187
export const NOTIFICATION_TYPES = notificationTypesEnum;
188188

packages/optimizely-sdk/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/optimizely-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/optimizely-sdk",
3-
"version": "4.9.0",
3+
"version": "4.9.1",
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)