Skip to content

Commit

Permalink
chore(release): 8.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [8.0.0](v7.4.4...v8.0.0) (2021-03-15)

### Bug Fixes

* call onError in init function ([#368](#368)) ([d2ae868](d2ae868))
* remove callback from argument to function that takes no arguments ([#370](#370)) ([777dead](777dead))
  • Loading branch information
amplitude-sdk-bot committed Mar 15, 2021
1 parent 1ce9eb6 commit 03a331d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# [8.0.0](https://github.com/amplitude/amplitude-javascript/compare/v7.4.4...v8.0.0) (2021-03-15)


### Bug Fixes

* call onError in init function ([#368](https://github.com/amplitude/amplitude-javascript/issues/368)) ([d2ae868](https://github.com/amplitude/amplitude-javascript/commit/d2ae8686752d4a977213f1c0b9e2fe61ba24863c))
* remove callback from argument to function that takes no arguments ([#370](https://github.com/amplitude/amplitude-javascript/issues/370)) ([777dead](https://github.com/amplitude/amplitude-javascript/commit/777dead4a5051e8d4d7e990aeb365b8d868e9383))

## [7.4.4](https://github.com/amplitude/amplitude-javascript/compare/v7.4.3...v7.4.4) (2021-03-02)


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": "7.4.4",
"version": "8.0.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-Qxj6E1kKIQnX+gpSZG9SJrDSYu7f/diMDfg+NK/Bss9jX/qPxRUlilsnDmDJpZuL';
as.integrity = 'sha384-xS3QJA0KchJRKhb1TrxSrhwecoxD/2kHmVHORZTgV/XQhJwa/gon7w1L0n8zHU4T';
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-7.4.4-min.gz.js';
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.0.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 03a331d

Please sign in to comment.