Skip to content

Commit c719589

Browse files
committed
v6.1.0
1 parent 92829d1 commit c719589

File tree

5 files changed

+10
-27
lines changed

5 files changed

+10
-27
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1+
### 6.1.0 (April 23, 2020)
2+
* Use a more compact format for newly generated device IDs
3+
* Fix issue with react native failing to initialize metadatastorage
4+
15
### 6.0.1 (April 17, 2020)
6+
* Fix issue where the umd module did not build.
7+
28
### 6.0.0 (April 17, 2020)
39
* Use a more compact cookie format
410
* Fix issue where a cookie key could have a space appear inside of it

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Please see our [installation guide](https://amplitude.zendesk.com/hc/en-us/artic
1818
[![npm version](https://badge.fury.io/js/amplitude-js.svg)](https://badge.fury.io/js/amplitude-js)
1919
[![Bower version](https://badge.fury.io/bo/amplitude-js.svg)](https://badge.fury.io/bo/amplitude-js)
2020

21-
[6.0.1 - Released on April 17, 2020](https://github.com/amplitude/Amplitude-JavaScript/releases/latest)
21+
[6.1.0 - Released on April 23, 2020](https://github.com/amplitude/Amplitude-JavaScript/releases/latest)
2222

2323

2424
# JavaScript SDK Reference #

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": "6.0.1",
4+
"version": "6.1.0",
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
@@ -2,10 +2,10 @@
22
var amplitude = window.amplitude || {'_q':[],'_iq':{}};
33
var as = document.createElement('script');
44
as.type = 'text/javascript';
5-
as.integrity = 'sha384-35+p+zAMRt40eCQKk1/Xowd25miK7ZUBRbn6ikyGdVMfY6iKSyDDJwxFc9z4+HhF';
5+
as.integrity = 'sha384-Gy2AHb2HVvf1J0ItM7ITMckyDf0I9i7uPEmPo50aphYwVy6mw4HgQM0g1CwkBhaF';
66
as.crossOrigin = 'anonymous';
77
as.async = true;
8-
as.src = 'https://cdn.amplitude.com/libs/amplitude-6.0.1-min.gz.js';
8+
as.src = 'https://cdn.amplitude.com/libs/amplitude-6.1.0-min.gz.js';
99
as.onload = function() {if(!window.amplitude.runQueuedFunctions) {console.log('[Amplitude] Error: could not load SDK');}};
1010
var s = document.getElementsByTagName('script')[0];
1111
s.parentNode.insertBefore(as, s);

tsconfig.json

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)