Skip to content

Commit

Permalink
chore(release): 8.20.0 [skip ci]
Browse files Browse the repository at this point in the history
# [8.20.0](v8.19.0...v8.20.0) (2022-08-24)

### Features

* enable the ability to overwrite the referrer ([#551](#551)) ([03c0a89](03c0a89))
  • Loading branch information
amplitude-sdk-bot committed Aug 24, 2022
1 parent 03c0a89 commit b4187d2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [8.20.0](https://github.com/amplitude/amplitude-javascript/compare/v8.19.0...v8.20.0) (2022-08-24)


### Features

* 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))

# [8.19.0](https://github.com/amplitude/amplitude-javascript/compare/v8.18.5...v8.19.0) (2022-07-25)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "amplitude-js",
"author": "Amplitude <support@amplitude.com>",
"version": "8.19.0",
"version": "8.20.0",
"license": "MIT",
"description": "Javascript library for Amplitude Analytics",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions src/amplitude-snippet.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
var as = document.createElement('script');
as.type = 'text/javascript';
// Don't edit as.integrity, it is tracked by semantic-release-bot during releases
as.integrity = 'sha384-hdEvx3zkd6VeH6O83N6nPQeUBkmA/KVVI/xP1PTxTSX9EGdyzELov1iyspAgfaI8';
as.integrity = 'sha384-plFYjkluopJ4Vn2REwFkLATTYuZEVu0jCc95Cl5XsfHGaxgtcieCZiLpRpp2ax4z';
as.crossOrigin = 'anonymous';
as.async = true;
// Don't edit as.src, it is tracked by semantic-release-bot during releases
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.19.0-min.gz.js';
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.20.0-min.gz.js';
as.onload = function () {
if (!window.amplitude.runQueuedFunctions) {
console.log('[Amplitude] Error: could not load SDK');
Expand Down

0 comments on commit b4187d2

Please sign in to comment.