Skip to content

Commit 876a4b2

Browse files
chore(release): 8.3.1 [skip ci]
## [8.3.1](v8.3.0...v8.3.1) (2021-06-10) ### Bug Fixes * Prevent periods in device id check ([#405](#405)) ([b872d7e](b872d7e))
1 parent b872d7e commit 876a4b2

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [8.3.1](https://github.com/amplitude/amplitude-javascript/compare/v8.3.0...v8.3.1) (2021-06-10)
2+
3+
4+
### Bug Fixes
5+
6+
* Prevent periods in device id check ([#405](https://github.com/amplitude/amplitude-javascript/issues/405)) ([b872d7e](https://github.com/amplitude/amplitude-javascript/commit/b872d7e4a384b53b61e7232fb7b3ce4a4ddff83e))
7+
18
# [8.3.0](https://github.com/amplitude/amplitude-javascript/compare/v8.2.3...v8.3.0) (2021-05-26)
29

310

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "amplitude-js",
33
"author": "Amplitude <[email protected]>",
4-
"version": "8.3.0",
4+
"version": "8.3.1",
55
"license": "MIT",
66
"description": "Javascript library for Amplitude Analytics",
77
"keywords": [

src/amplitude-snippet.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
var as = document.createElement('script');
1010
as.type = 'text/javascript';
1111
// Don't edit as.integrity, it is tracked by semantic-release-bot during releases
12-
as.integrity = 'sha384-xwN6OCSgIf1SF9jtD6pouaSwCvpobyV3lanBGQ1d33MwTxLarbQxUif0Slt0npCM';
12+
as.integrity = 'sha384-LVv0lrUb/YheB7BIbXBXnOR541wpx5bvF7QXqs8hT8Cl/LiOackHu7WqEqhub/Mz';
1313
as.crossOrigin = 'anonymous';
1414
as.async = true;
1515
// Don't edit as.src, it is tracked by semantic-release-bot during releases
16-
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.3.0-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.3.1-min.gz.js';
1717
as.onload = function () {
1818
if (!window.amplitude.runQueuedFunctions) {
1919
console.log('[Amplitude] Error: could not load SDK');

0 commit comments

Comments
 (0)