Skip to content

Commit

Permalink
chore(release): 8.10.0 [skip ci]
Browse files Browse the repository at this point in the history
# [8.10.0](v8.9.1...v8.10.0) (2021-11-12)

### Features

* custom library options and setter ([#443](#443)) ([dce0eac](dce0eac))
  • Loading branch information
amplitude-sdk-bot committed Nov 12, 2021
1 parent dce0eac commit f465bfa
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.10.0](https://github.com/amplitude/amplitude-javascript/compare/v8.9.1...v8.10.0) (2021-11-12)


### Features

* custom library options and setter ([#443](https://github.com/amplitude/amplitude-javascript/issues/443)) ([dce0eac](https://github.com/amplitude/amplitude-javascript/commit/dce0eac92861f4c0efa4d3561f95e887e61e3874))

## [8.9.1](https://github.com/amplitude/amplitude-javascript/compare/v8.9.0...v8.9.1) (2021-11-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 <[email protected]>",
"version": "8.9.1",
"version": "8.10.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-MMQNcIUf1BUVAr9Xrumh7dh2ZjfzdeESpfuJmavN2ikYPvQF7k3AK7JPoNNWTE4y';
as.integrity = 'sha384-eJNtcTdxrjl2WZzovYTHvuLJ4ON02PO2QdENREcATvhkVhpbZYo+RVsoxVC3wZ66';
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.9.1-min.gz.js';
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.10.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 f465bfa

Please sign in to comment.