Skip to content

Commit 043a3ce

Browse files
chore(release): 7.3.2 [skip ci]
## [7.3.2](v7.3.1...v7.3.2) (2020-11-05) ### Bug Fixes * **cookies:** reduce cookie lifetime ([#306](#306)) ([84e1a57](84e1a57)) * Prototype js fix ([#313](#313)) ([7e463ab](7e463ab))
1 parent 7e463ab commit 043a3ce

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.3.1",
4+
"version": "7.3.2",
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-7Zya+Y1QaBIoza/TOfsif/zZ7X2er7srVZErHGRPVlDAD5RVUcne5Y0X5lP8RsMN';
12+
as.integrity = 'sha384-jKvd3wo7GNJMYGHsLuOhgS5AKkxB4UvWfK8HeyoXuqBXNEqKp6g0yK8TXUx/Kuot';
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.3.1-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-7.3.2-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)