Skip to content

Commit b4187d2

Browse files
chore(release): 8.20.0 [skip ci]
# [8.20.0](v8.19.0...v8.20.0) (2022-08-24) ### Features * enable the ability to overwrite the referrer ([#551](#551)) ([03c0a89](03c0a89))
1 parent 03c0a89 commit b4187d2

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [8.20.0](https://github.com/amplitude/amplitude-javascript/compare/v8.19.0...v8.20.0) (2022-08-24)
2+
3+
4+
### Features
5+
6+
* enable the ability to overwrite the referrer ([#551](https://github.com/amplitude/amplitude-javascript/issues/551)) ([03c0a89](https://github.com/amplitude/amplitude-javascript/commit/03c0a890d578db1ada383cf1e6195d71275bac44))
7+
18
# [8.19.0](https://github.com/amplitude/amplitude-javascript/compare/v8.18.5...v8.19.0) (2022-07-25)
29

310

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": "8.19.0",
4+
"version": "8.20.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-hdEvx3zkd6VeH6O83N6nPQeUBkmA/KVVI/xP1PTxTSX9EGdyzELov1iyspAgfaI8';
12+
as.integrity = 'sha384-plFYjkluopJ4Vn2REwFkLATTYuZEVu0jCc95Cl5XsfHGaxgtcieCZiLpRpp2ax4z';
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.19.0-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.20.0-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)