Skip to content

Commit 319444c

Browse files
chore(release): 7.2.0 [skip ci]
# [7.2.0](v7.1.1...v7.2.0) (2020-09-22) ### Bug Fixes * **cookies:** respect the options passed into cookies when testing to see if they're enabled ([#294](#294)) ([61b6590](61b6590)) ### Features * add logAttributionCapturedEvent option ([#295](#295)) ([309dac3](309dac3))
1 parent cfefcd9 commit 319444c

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.1.1",
4+
"version": "7.2.0",
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-+EOJUyXoWkQo2G0XTc+u2DOlZkrMUcc5yOqCuE2XHRnytSyqpFQSbgFZAlGmjpLI';
12+
as.integrity = 'sha384-yPyeARQOyqYBFPjK2yO7AidLXf7HBQws/DMlhCAyyOvw50oA9VJsnyKHUJC8d5wd';
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.1.1-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-7.2.0-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)