Skip to content

Commit bec6e50

Browse files
chore(release): 7.2.1 [skip ci]
## [7.2.1](v7.2.0...v7.2.1) (2020-09-22) ### Bug Fixes * **initialization:** always return `this` in onInit ([#300](#300)) ([44d00d7](44d00d7)) * move bad postinstall script ([#301](#301)) ([ca98af3](ca98af3))
1 parent ca98af3 commit bec6e50

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

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

src/amplitude-snippet.js

+2-2
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-yPyeARQOyqYBFPjK2yO7AidLXf7HBQws/DMlhCAyyOvw50oA9VJsnyKHUJC8d5wd';
12+
as.integrity = 'sha384-girahbTbYZ9tT03PWWj0mEVgyxtZoyDF9KVZdL+R53PP5wCY0PiVUKq0jeRlMx9M';
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-7.2.0-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-7.2.1-min.gz.js';
1717
as.onload = function() {if(!window.amplitude.runQueuedFunctions) {console.log('[Amplitude] Error: could not load SDK');}};
1818
var s = document.getElementsByTagName('script')[0];
1919
s.parentNode.insertBefore(as, s);

0 commit comments

Comments
 (0)