Skip to content

Commit

Permalink
chore(release): 8.12.0 [skip ci]
Browse files Browse the repository at this point in the history
# [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))
  • Loading branch information
amplitude-sdk-bot committed Nov 18, 2021
1 parent 8e0971e commit 0e3add1
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.12.0](https://github.com/amplitude/amplitude-javascript/compare/v8.11.1...v8.12.0) (2021-11-18)


### Features

* 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))
* 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.11.1](https://github.com/amplitude/amplitude-javascript/compare/v8.11.0...v8.11.1) (2021-11-16)


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 <[email protected]>",
"version": "8.11.1",
"version": "8.12.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-OKNHERsoFg8uHoGv+uLhuReE0PmPEmiaj4E39zD2+o7k+P9ztplFt/BQ4OuQvI6J';
as.integrity = 'sha384-UcvEbHmT0LE2ZB30Y3FmY3Nfw6puAKXz/LpCFuoywywYikMOr/519Uu1yNq2nL9w';
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.11.1-min.gz.js';
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.12.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 0e3add1

Please sign in to comment.