Skip to content

Commit 03a331d

Browse files
chore(release): 8.0.0 [skip ci]
# [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))
1 parent 1ce9eb6 commit 03a331d

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# [8.0.0](https://github.com/amplitude/amplitude-javascript/compare/v7.4.4...v8.0.0) (2021-03-15)
2+
3+
4+
### Bug Fixes
5+
6+
* call onError in init function ([#368](https://github.com/amplitude/amplitude-javascript/issues/368)) ([d2ae868](https://github.com/amplitude/amplitude-javascript/commit/d2ae8686752d4a977213f1c0b9e2fe61ba24863c))
7+
* 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))
8+
19
## [7.4.4](https://github.com/amplitude/amplitude-javascript/compare/v7.4.3...v7.4.4) (2021-03-02)
210

311

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "amplitude-js",
33
"author": "Amplitude <support@amplitude.com>",
4-
"version": "7.4.4",
4+
"version": "8.0.0",
55
"license": "MIT",
66
"description": "Javascript library for Amplitude Analytics",
77
"keywords": [

src/amplitude-snippet.js

Lines changed: 2 additions & 2 deletions
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-Qxj6E1kKIQnX+gpSZG9SJrDSYu7f/diMDfg+NK/Bss9jX/qPxRUlilsnDmDJpZuL';
12+
as.integrity = 'sha384-xS3QJA0KchJRKhb1TrxSrhwecoxD/2kHmVHORZTgV/XQhJwa/gon7w1L0n8zHU4T';
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.4.4-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.0.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)