Skip to content

Commit 0e3add1

Browse files
chore(release): 8.12.0 [skip ci]
# [8.12.0](v8.11.1...v8.12.0) (2021-11-18) ### Features * add more interface for flutter web support ([#444](#444)) ([69c18f7](69c18f7)) * update setLibrary api make it ignore the null value of name or version ([#449](#449)) ([8e0971e](8e0971e))
1 parent 8e0971e commit 0e3add1

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.12.0](https://github.com/amplitude/amplitude-javascript/compare/v8.11.1...v8.12.0) (2021-11-18)
2+
3+
4+
### Features
5+
6+
* add more interface for flutter web support ([#444](https://github.com/amplitude/amplitude-javascript/issues/444)) ([69c18f7](https://github.com/amplitude/amplitude-javascript/commit/69c18f7253f39f63b4204bbf15a604b0f458e98c))
7+
* update setLibrary api make it ignore the null value of name or version ([#449](https://github.com/amplitude/amplitude-javascript/issues/449)) ([8e0971e](https://github.com/amplitude/amplitude-javascript/commit/8e0971e00164dfb6206e73e51da9329b2f5f2009))
8+
19
## [8.11.1](https://github.com/amplitude/amplitude-javascript/compare/v8.11.0...v8.11.1) (2021-11-16)
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 <[email protected]>",
4-
"version": "8.11.1",
4+
"version": "8.12.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-OKNHERsoFg8uHoGv+uLhuReE0PmPEmiaj4E39zD2+o7k+P9ztplFt/BQ4OuQvI6J';
12+
as.integrity = 'sha384-UcvEbHmT0LE2ZB30Y3FmY3Nfw6puAKXz/LpCFuoywywYikMOr/519Uu1yNq2nL9w';
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.11.1-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.12.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)