Skip to content

Commit

Permalink
chore(release): 7.3.1 [skip ci]
Browse files Browse the repository at this point in the history
## [7.3.1](v7.3.0...v7.3.1) (2020-10-30)

### Bug Fixes

* **react-native:** Change @react-native-community/async-storage to @react-native-async-storage/async-storage ([#314](#314)) ([382c5a4](382c5a4))
  • Loading branch information
amplitude-sdk-bot committed Oct 30, 2020
1 parent 382c5a4 commit 75066bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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": "7.3.0",
"version": "7.3.1",
"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-1FBF2gemQrP+46XhACWiygjt50Hls2GBuUSCoOe4gBt2xKVflucxbDiLD20lMR9T';
as.integrity = 'sha384-7Zya+Y1QaBIoza/TOfsif/zZ7X2er7srVZErHGRPVlDAD5RVUcne5Y0X5lP8RsMN';
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.3.0-min.gz.js';
as.src = 'https://cdn.amplitude.com/libs/amplitude-7.3.1-min.gz.js';
as.onload = function() {if(!window.amplitude.runQueuedFunctions) {console.log('[Amplitude] Error: could not load SDK');}};
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(as, s);
Expand Down

0 comments on commit 75066bf

Please sign in to comment.